溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

表格表單及樣式重置、特性

發(fā)布時間:2020-06-29 12:09:40 來源:網(wǎng)絡(luò) 閱讀:667 作者:ShuenWang 欄目:開發(fā)技術(shù)

1、表格 用table標(biāo)簽,標(biāo)簽 table的標(biāo)簽基本特性是 display:table;

<thead> 表格頭部

<tbody> 表格主體

<tfoot> 表格尾部

<tr>行

<th>表格標(biāo)題

<td>單元格

一般只用<tbody>

colspan 屬性規(guī)定單元格可橫跨的列數(shù) 只能放在th,td標(biāo)簽中<th colspan='2'>

rowspan 屬性規(guī)定單元格可橫跨的行數(shù) 只能放在td標(biāo)簽中<td colspan='2'>

例:

<table>

<thead>

<tr>

<th>

</th>

</tr>

</thead>

<tbody>

<tr>

<td>

</td>

</tr>

</tbody>

</table>


注意事項:

1、不要給table,th,td以外的標(biāo)簽加樣式,會存在不兼容問題

標(biāo)簽th,td有內(nèi)邊距,使用時候去掉

2、單元格默認(rèn)平分table寬度,高度 

3、th里面的文字默認(rèn)加粗,并且左右上下居中顯示

4、td里面的文字默認(rèn)上下居中,左右居左顯示

5、table決定了整個表格的寬度

6、table里面的單元格寬度會被轉(zhuǎn)化成百分比;

7、表格里面的每一列必須有寬度;保證表格的樣式不會被內(nèi)容撐開太多

8、表格的同一豎列繼承最大寬度,同一橫行繼承最大高度

2.<form> 表單標(biāo)簽

<form action="目標(biāo)" method-"get" target="_blank"/>

<input type="submit" value="提交OK"/> 提交按鈕

<input type="text" name=""/>  文本框 文本內(nèi)容只能為單行

<input type="password" name=""/>  密碼框

(

<input type="radio" name="gender" id="a"/><label for="a">男</label> 單選框

<input type="radio" name="gender"/ id="b"> <label for="b女</label>

)

</label>文字和單選按鈕相連接 點擊文字也能選到單選框

<input type="checkbox" name="" disabled/> 旅游

<input type="checkbox" name="" disabled/> 建設(shè)

<input type="checkbox" name="" checked/> 美食

check 默認(rèn)選中 disabled 默認(rèn)靜掉

)復(fù)選框

<input type="file" name=""/>上傳

<input src="" type="img" name=""/>圖片 也具備提交功能

<input type="button" name=""/> 按鈕功能 沒有任何功能

<input type="reset" name=""/>  重置 一般不用

<input type="hidden" name=""/> 一個隱藏按鈕 前端沒有 對于后臺有用處

(

<select>

<option>1</option>

<option>2</option>

<option selected>3</option>

</select>

) 下拉選框 沒加selected 默認(rèn)第一行 加selected 會默認(rèn)第3行

文本域 :<textarea></textarea>文本內(nèi)容可以多行 

下滑 可以用overflow:auto 來處理 焦點框用outline:none 

存在一些兼容性問題

注意事項:

form標(biāo)簽有外邊距

input有默認(rèn)margin,padding

selct默認(rèn)margin

textarea有默認(rèn)margin,paddiing

form表單都支持寬高,都是一個inline-block屬性


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI