demo01.html:css
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>css課程</title>
<style type="text/css"></style>
<link rel="stylesheet" type="text/css" href="div1.css"/>
</head>
<body>
<div id="div1"align="center"style="text-align: center;">css樣式表</div>
</body>
</html>html
div1.css:htm
[style] {
width: 200px;
height: 200px;
border: 1px;
border-style:dashed;utf-8
background-color: #FF0000;
border-radius: 3.125rem ;
/* 圓角 */
padding-bottom: initial;
/* 下邊距 */
margin-bottom: 10px 20px 30px;
/* 上邊距 */
float: right;
/* 浮動 */
}
rem