标签:链接 example 嵌入式 code class css angular div 样式
CSS的定义方法是:
选择器 { 属性:值; 属性:值; 属性:值;}
选择器是将样式和页面元素关联起来的名称,属性是希望设置的样式属性每个属性有一个或多个值。
示例:
div{ width:100px; height:100px; color:red }
<link rel="stylesheet" type="text/css" href="./example.css">
<style type="text/css">
div{ width:100px; height:100px; color:red }
......
</style>
<div style="width:100px; height:100px; color:red ">
......
</div>
标签:链接 example 嵌入式 code class css angular div 样式
原文地址:https://www.cnblogs.com/aduner/p/12207153.html