欧美亚洲中文,在线国自产视频,欧洲一区在线观看视频,亚洲综合中文字幕在线观看

      1. <dfn id="rfwes"></dfn>
          <object id="rfwes"></object>
        1. 站長(zhǎng)資訊網(wǎng)
          最全最豐富的資訊網(wǎng)站

          css怎么修改input框的長(zhǎng)度

          css修改input框長(zhǎng)度的方法:1、在input標(biāo)簽中利用style屬性設(shè)置width樣式,語法“<input style="width: 寬度值;" />”;2、在style標(biāo)簽對(duì)中,設(shè)置“input{width:寬度值;}”語句即可。

          css怎么修改input框的長(zhǎng)度

          本教程操作環(huán)境:windows7系統(tǒng)、CSS3&&HTML5版、Dell G3電腦。

          css修改input框長(zhǎng)度的方法

          方法1:

          利用style屬性給input標(biāo)簽添加 width樣式。

          <input type="text" /><br /><br /> <input type="text" style="width: 300px" />

          css怎么修改input框的長(zhǎng)度

          方法2:

          <!DOCTYPE html> <html> 	<head> 		<style> 			.input {width: 100px;} 		</style> 	</head> 	<body> 		<input type="text" /><br /><br /> 		<input type="text" class="input" /> 	</body> </html>

          css怎么修改input框的長(zhǎng)度

          (學(xué)習(xí)視頻分享:css視頻教程)

          贊(0)
          分享到: 更多 (0)
          網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)