如何获得包含标题的圆角的CSS

时间:2014-08-25 09:14:47

标签: html css html5 css3 user-interface

This is a picture representation. Exactly I want to know the css rules needed to achieve this

这是图片表示。我想知道实现这个所需的css规则

3 个答案:

答案 0 :(得分:1)

这是表单的字段集。

<form>
    <fieldset>
        <legend>Title:</legend>
    </fieldset>
</form>

答案 1 :(得分:1)

HTML5:

<!DOCTYPE html>
<html>
<body>

<form>
 <fieldset>
  <legend>Access Group:</legend>
 </fieldset>
</form>

</body>
</html>

CSS:

fieldset {
    border-radius: 3px;   
}

答案 2 :(得分:1)

您可以使用html fieldsetlegend标记来实现此目的。要获得圆角,只需使用border-radius属性。

http://www.w3schools.com/tags/tag_fieldset.asp
http://www.w3schools.com/tags/tag_legend.asp
http://www.w3schools.com/cssref/css3_pr_border-radius.asp

看看那个小提琴: Demo Fiddle