亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長(zhǎng)資訊網(wǎng)
    最全最豐富的資訊網(wǎng)站

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

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

    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)