你能否建议CSS使用下面的引用(使用
CSS3渐变和边界)?
当前版本的HTML如下所示:
<section style="margin: 10px;"> <fieldset style="border-radius: 5px; padding: 5px; min-height:150px;"> <legend><b> My Statistics </b> </legend> <label> <br/> </label> <label> <br/> </label> </fieldset>
解决方法
fieldset { font-family: sans-serif; border: 5px solid #1F497D; background: #ddd; border-radius: 5px; padding: 15px; } fieldset legend { background: #1F497D; color: #fff; padding: 5px 10px ; font-size: 32px; border-radius: 5px; Box-shadow: 0 0 0 5px #ddd; margin-left: 20px; }
<section style="margin: 10px;"> <fieldset style="min-height:100px;"> <legend><b> My Statistics </b> </legend> <label> <br/> </label> <label> <br/> </label> </fieldset>