1、首先打开sublime text编辑器,新建一个html文件,里面写入一个p标签:
2、然后设置p标签的样式,这里先设置一个边框,然后设置圆角边框,主要使用CSS3属性border-radius属性定义圆角效果。其中的数值为参数length是浮点数和单位标识符组成的长度值,不可为负值,这里圆角的值越大,圆角的弧度也越大:
3、最后打开浏览器,就可以看到圆角边框了:
<!DOCTYPE html><html>
<head>
<meta http-equiv="Content-Type" content="text/html charset=UTF-8">
<title>
RunJS 演示代码
</title>
<style>
*{
margin:0
}
fieldset{
margin:auto
width:500px
border:4px solid blue
}
</style>
</head>
<body>
<fieldset>
<legend>
基本信息
</legend>
<table>
<tr><th>name</th></tr>
<tr><td>joey</td></tr>
</table>
</fieldset>
</body>
</html>