Blogger Information
Blog 36
fans 0
comment 0
visits 29222
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML5基础标签+css选择器
小程_武汉_214945
Original
1033 people have browsed it

实例

<!DOCTYPE html>     <!--xml html 声明-->
<html>    <!--声明当前页面的语言类型-->
   <head>
       <meta charset="utf-8">  <!-- 定义网页编码格式 -->
       <link rel="stylesheet" type="text/css" href="./static/css/style.css" /> <!-- 外部样式 -->
       <link rel="shortcut icon" type="image/x-icon" href="./static/images/footlogo.png" />   <!-- 网站小图标 -->
       <style> /*内部样式*/
           body{
               /*background-color:red;*/
           }
           /*ID选择器*/
           #box1{
               width:100px;
               height:100px;
               background-color:skyblue;
           }
           /*类选择器 class*/
           .box2{
               width:200px;
               height:200px;
               background-color:pink;
           }
           /*属性选择器*/
           a{
               color:red;
           }
           a[href="http://www.php.cn"]{
               color:blue;
           }
           /*box1下面的a标签*/
           #box1 a{
               color:#000;
           }

       </style>
   </head>

   <body>
   <!-- <body style="background-color: blue"> -->   <!-- style=属性 行内属性 -->
   样式优先级:
   行内属性->内部样式->外部样式

   <div id="box1">
       <a href="javascript:">php</a>
   </div>
   <div class="box2"></div>
   <a href="http://www.baidu.com">百度</a><br />
   <a href="http://www.php.cn" target="_blank">php中文网</a>  <!-- target="_blank" 新页面打开 -->

   </body>
</html>

运行实例 »

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

IMG_20180812_123254.jpg

IMG_20180812_123259.jpgIMG_20180812_123315.jpg

Correction status:qualified

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
Author's latest blog post