HTML中如何設定button按鈕讓text中的字型變大

時間 2022-02-22 01:15:21

1樓:大野瘦子

這樣:btn.frame = cgrectmake(x, y, width, height);

[btn settitle: @"search" forstate: uicontrolstatenormal];

//設定按鈕上的自體的大小

//[btn setfont: [uifont systemfontsize: 14.0]];    //這種可以用來設定字型的大小,但是可能會在將來的sdk版本中去除改方法

//應該使用

btn.titlelabel.font = [uifont systemfontofsize: 14.0];

[btn sebackgroundcolor: [uicolor bluecolor]];

//最後將按鈕加入到指定檢視superview

[superview addsubview: btn];

注意事項

建立按鈕的兩種方法:

1、動態建立

btnfont = [uibutton buttonwithtype:uibuttontyperoundedrect];

[btnfont setframe:cgrectmake(100, 10, 120, 40)];

[btnfont addtarget:self action:nil forcontrolevents:uicontroleventtouchupinside];

[btnfont settitle:@"字型" forstate:uicontrolstatenormal];

btnfont.backgroundcolor=[uicolor clearcolor];

[self.view addsubview:btnfont];

2、在xib檔案中已經建立好,通過tag獲取按鈕

uibutton *testbutton= (uibutton*)[self.view viewwithtag:100];

[testbutton addtarget:self action:@selector(test:)

forcontrolevents:uicontroleventtouchupinside];

html中設定按鈕中字型除了用css(font-size),還有什麼方法?謝謝

2樓:匿名使用者

如果你想對某些區域性文字進行樣式控制的話最好是

3樓:匿名使用者

首先你寫的

謝謝這段**有問題

應該是雙引號

你是**寫錯了沒法變字型大小麼?

4樓:匿名使用者

還可以用標題設定大小,標題1,標題2....

5樓:匿名使用者

以此類推到;

字型大小:由大到小

6樓:匿名使用者

用 h1 h2 h3.....

html中如何設定button按鈕讓一個text中的字型變大一號 200

7樓:大野瘦子

這樣:btn.frame = cgrectmake(x, y, width, height);

[btn settitle: @"search" forstate: uicontrolstatenormal];

//設定按鈕上的自體

//[btn setfont: [uifont systemfontsize: 14.0]];    //這種可以用來設定字型的大小,但是可能會在將來的sdk版本中去除改方法

//應該使用

btn.titlelabel.font = [uifont systemfontofsize: 14.0];

[btn sebackgroundcolor: [uicolor bluecolor]];

//最後將按鈕加入到指定檢視superview

[superview addsubview: btn];

注意事項

建立按鈕的兩種方法:

1、動態建立

btnfont = [uibutton buttonwithtype:uibuttontyperoundedrect];

[btnfont setframe:cgrectmake(100, 10, 120, 40)];

[btnfont addtarget:self action:nil forcontrolevents:uicontroleventtouchupinside];

[btnfont settitle:@"字型" forstate:uicontrolstatenormal];

btnfont.backgroundcolor=[uicolor clearcolor];

[self.view addsubview:btnfont];

2、在xib檔案中已經建立好,通過tag獲取按鈕

uibutton *testbutton= (uibutton*)[self.view viewwithtag:100];

[testbutton addtarget:self action:@selector(test:)

forcontrolevents:uicontroleventtouchupinside];

html中怎麼設定按鈕的大小? 10

8樓:言言言小魚

可以設定成塊級內聯元素,這樣就能設定寬高了。

9樓:匿名使用者

可以通過樣式來設定:

你可先給你的按鈕設定一個class,比如:;

方法有3種:

1.如果有你外鏈樣式表你可以在樣式表徵

.btn

2.如果沒有連線你直接上頭部加上

3.你可以直接在按鈕上加比如:按鈕

在html5中button和submit有什麼分別

千鋒教育 button 普通按鈕,submit 提交按鈕 submit按鈕一般出現在網頁上需要提交資訊到伺服器是才使用,考頁面編輯人員決定,例如在同一天網頁表單上,使用者輸入時可能輸入錯誤或是偏差,則可以在網頁上建立一個button 清除 重置 按鈕,一張表單可以有多個普通按鈕,且至少有一個提交按鈕...

html中如何設定文字框的大小,HTML中如何設定文字框的大小

你說的文字框的大小是指邊框的大小嗎?如果是指邊框的大小,可以使用css樣式控制,如 你也可以使用文字框自己的屬性,定義文字框的行和列控制大小,如 一騎當後 輸入框的大小不知是指顯示長度或最多能輸入的字元數?如文字框可以這樣控制 其中,size 12 是設定文字框的顯示長度為12個字元,而maxlen...

html中如何設定div邊框的顏色

1.新增外部樣式 這是div1 border為邊框屬性,1px為邊框的寬度 1畫素,solid為邊框的樣式 實線,000為邊框的顏色 黑色 2.新增內部樣式 這是div1 慕刓辭 div寬度200,高100,邊框10px,顏色為紅色紅色邊框的div盒子 css div 從前有個 如果有引用css檔案...