fieldset的样式和使用
http://blog.csdn.net/woshixuye/article/details/7180114
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
Html代码 fieldset { border: 1px solid #61B5CF; margin-top: 16px; padding: 8px; } legend { font: bold 12px Arial, Helvetica, sans-serif; color: #00008B; background-color: #FFFFFF; } .classDivBlank01 { float:left; width:130px; height:150px; } <fieldset> <legend class="legend">人员信息</legend> <!--纵向留白--> <div class="classDivBlank01"></div> <div style="float:left"> <table cellspacing="10px"> .................... </table> </div> </fieldset> |