css3中的button样式怎么改

2024-11-08 02:53:10
推荐回答(2个)
回答1:

在一个id为bt1的按钮上设置样式,如下:


#bt1{ 

font-family:微软雅黑 ;    
width: 60px ;             
height:30px ;             
font-size:14px;           
color:gray;               
border: 1px solid red; 
margin-left: 10px;            
background-color:#F1F1F1;        
box-shadow:10px 10px 10px gray;  
border-radius:10px 10px 10px 10px;
cursor:pointer;                  

回答2:

直接改不行吗?给button加个class .button{width:100px;height:30px; background:#ccc; color:#333}