div设置class属性,样式,背景色、高度和边框、边框圆角
<html>
<head>
<title>demo</title>
<style type="text/css">
.demo {
width: 200px;
height: 150px;
background: #bbb;
border: 1px solid #333;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="demo"></div>
</body>
</html>
效果: