今天刚注意一个问题,想在asp:button控件加统一样式,但不想通过ID和样式类名的方式(就是加#的方式),通过尝试发现在样式表中加
<style type="text/css">
button
{
font-family: "Tahoma" , "宋体";
font-size: 9pt;
color: #000000;
height: 25px;
background-color: #ffffff;
font-style: normal;
border-top: 1px solid #ffffff;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #ffffff;
}
</style>
方式不起作用。
用
<style type="text/css">
input
{
border: 1px solid #444444;
font-family: "Tahoma" , "宋体";
font-size: 9pt;
color: #444444;
height: 18px;
background-color: #ffffff;
font-style: normal;
width: 99px;
}
</style>
控制所有input样式,不能区别应用。
用
<style type="text/css">
input [type="button"]
{
font-family: "Tahoma" , "宋体";
font-size: 9pt;
color: #000000;
height: 25px;
background-color: #ffffff;
font-style: normal;
border-top: 1px solid #ffffff;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #ffffff;
background-image: url( 'none' );
}
</style>
也不可以。
怎么解决?
30秒到达战场
阿波罗的战车
蛊毒传说