Blogger Information
Blog 3
fans 0
comment 0
visits 2557
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS样式表的写法总结及优先级判断_2019年4月24日23点2分
RED的PHP之路
Original
787 people have browsed it
<h1>作业1:CSS样式写法及优先级判断</h1>

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS三种位置的写法</title>
    <link rel="stylesheet" type="text/css" href="waibu.css">

    <style>
        p{color: #5dafd1}
    </style>
</head>
<body>
<!--第一种,内联样式,在标签中-->
<h1 style="color: red">PHP中文网就是好</h1>
<p style="background-color: #00FF00 ">欢迎来到新疆昆玉钢铁***,欢迎您!</p>

<!--第二种,内部样式,在head中-->
<p>这是一段验证内部样式的文字,在head中声明CSS样式</p>

<!--第三种,外部样式,引用外部文件-->
<p>这是一段文字,用来验证引用外部CSS文件</p>

</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments