css

学习了css的基础知识。

主要是属性元素。

最主要的style。

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/css.css">
<style type="text/css">
.Div_class_Name{
width: 100px;
height: 200px;
background-color: #ddd;
}
#Div_class_Name{
width: 100px;
height: 200px;
background-color: #f32;
}
div{
width: 500px;
height: 500px;
}
</style>
</head>
<body>
<div style="width:100px;height:100px;background-color:#ffaa22;">内联式</div>

<div class="Div_class_Name">嵌入式.</div>
<div id="Div_class_Name">嵌入式#</div>

<div id="GO_Div_class_Name">外部样式</div>
</body>
</html>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。