當前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > 網(wǎng)頁只帶下畫線的輸入框CSS怎么寫

網(wǎng)頁只帶下畫線的輸入框CSS怎么寫

2012/10/19 11:04:56作者:佚名來源:網(wǎng)絡(luò)

移動端

【實例名稱】

網(wǎng)頁只帶下畫線的輸入框

【實例描述】

在設(shè)計考試頁面時,經(jīng)常會碰到填空題,填空題的輸入框要求只有一條下劃線。本例學(xué)習(xí)此類入框的設(shè)計。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>標題頁</title>
</head>
<body>
只有下劃線的輸入框<input type="text" name="txt1" size="25" style=" border:1px; border-bottom-style: solid;border-top-style: none;border-left-style:none;border-right-style:none;">
<br />
默認的輸入框      <input id="Text1" size="25" type="text" />
</body>
</html>

 【運行效果】

運行效果

 【難點剖析】

本例的重點是邊線樣式的定義。如果要使控件有邊框線則需要將“border”樣式設(shè)置為大于一的值,然后設(shè)置4個邊框,左邊框為“border-left-style”,右邊框為“border-righ-style”,上邊框為“bordcr-top—styIe”,下邊框為“border-bottom-style”。

【源碼下載】

本實例JS代碼下載

標簽: 輸入框  網(wǎng)頁