标签:style blog color ar strong sp div on log
1.HTML
<div> TextBox<br /> <input type="text" name="name" value=" " /><br /> TextArea <br /> <textarea></textarea> </div>
2.方法一-----根据标签名,修改样式(页面中的所有input标签)
input,textarea{ border-color:red; }
3.方法二(页面中的text标签)
input[type=text],textarea{ border-color:red; }
标签:style blog color ar strong sp div on log
原文地址:http://www.cnblogs.com/songxia/p/4031710.html