代碼書寫格式
創(chuàng)新互聯(lián)建站主要從事網(wǎng)站制作、成都做網(wǎng)站、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)佳木斯,十年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):18980820575
input type="text"/ ?最簡(jiǎn)單的
如果你還需要更好看一些的,還可以寫一些css樣式
例如:
css樣式
如果還有什么不懂,還提問(wèn)我,希望我的回答,能幫到你
head
style type="text/css"
!--
.aa
{ background-color:#0000ff; color:#000000;filter: alpha(opacity=50)}
.bb
{ background-color:#009933; color:#000000;
}
/script/head加入這個(gè)
body
div id="Layer5" onMouseOver="this.className='aa'" onMouseOut="this.className='bb'"/div
/body這樣鼠標(biāo)經(jīng)過(guò)顏色就變啦
可以給標(biāo)簽家個(gè)id或class; 就可以調(diào)整文本框的寬和高。
如:
style type="text/css"
.text1{width:100px; height:20px}
/style
input type="text" class="text1" /
擴(kuò)展資料:
在CSS中,使用text-align屬性控制文本的水平方向的對(duì)齊方式:左對(duì)齊、居中對(duì)齊、右對(duì)齊。
該屬性通過(guò)指定行框與哪個(gè)點(diǎn)對(duì)齊,從而設(shè)置塊級(jí)元素內(nèi)文本的水平對(duì)齊方式。通過(guò)允許用戶代理調(diào)整行內(nèi)容中字母和字之間的間隔,可以支持值 justify;不同用戶代理可能會(huì)得到不同的結(jié)果。
默認(rèn)值:left if direction is ltr, and right if direction is rtl?
繼承:yes?
版本:CSS1?
JavaScript 語(yǔ)法:object.style.textAlign="right"?
參考資料來(lái)源:百度百科-text-align
用CSS怎么能寫輸入框呢,CSS只是用來(lái)寫樣式的。要寫輸入框就用HTML的input標(biāo)簽。例如:
input type="text" name="username" /
input type="password" name="password"
直接使用css的標(biāo)簽選擇器就可以實(shí)現(xiàn)
td?input[type='text']?{.../*設(shè)置需要的樣式*/}
舉個(gè)例子:
創(chuàng)建Html元素
table
tr
tdname/td
tdinput?type="text"/td
tdsex/td
tdinput?type="radio"?name="sex"?checked男input?type="radio"?name="sex"女/td
/tr
tr
tdtel./td
tdinput?type="text"/td
tdaddr./td
tdinput?type="text"/td
/tr
/table
設(shè)置css樣式
table{border-collapse:?collapse;}
td{border:1px?solid?#ccc;padding:5px;}
/*設(shè)置單元格中文本框的樣式*/
td?input[type='text']{border:1px?solid?green;border-radius:3px;height:30px;}
觀察顯示效果
border-radius屬性可以實(shí)現(xiàn)元素的圓角。如下css可以實(shí)現(xiàn)文本框(單行、多行)的圓角:
input[type=text],textarea{border-radius:3px;border:1px solid #000;}
border-radius用法如下:
border-radius
屬性是一個(gè)簡(jiǎn)寫屬性,用于設(shè)置四個(gè)
border-*-radius
屬性。
該屬性允許為元素添加圓角邊框
語(yǔ)法:
border-radius:
1-4
length|%
/
1-4
length|%;
按此順序設(shè)置每個(gè)
radius
的四個(gè)值。
如果省略
bottom-left,則與
top-right
相同。
如果省略
bottom-right,則與
top-left
相同。
如果省略
top-right,則與
top-left
相同。
單位一般用px和百分比較多,其他單位也可