使用css直接定義input標籤

來源:互聯網
上載者:User
css

<style>
INPUT {
 color: expression(this.type=="button"?'red':'green');
}

</style>

<input type="button" name="test" value="haha">
<input type="text" name="test2" value="haha">

使用css可以很好的進行格式的設計,有的時候,甚至可以直接定義html的標籤的格式,但對於input,這個標籤,比較複雜。可能type=select  | type=button ||type=text等等幾種情況。不好定義。於是就用上面的辦法,對他進行定義。

如果是select還可以

 <input type="select" css=".mystyle">

如果是<asp:button >還可以

<asp:button cssClass=".mystyle">

不論如何,怎樣都可以設定,這樣可以減少流量。



相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.