HTML

草莓先森的博客
草莓先森的博客原创
2018年08月14日 15:12:59885浏览

<Doctype html>

<html>

<head>

<title>小白入门</title>

<meta charset='utf=-8'>

<link rel="stylesheet" type="text/css" href="static/style.css">

<!-- link引入外部文件 --><!-- rel定义当前文档与被链接文档关系 -->
<!-- type定义外部文档类型 --><!-- href定义外部文档网址或本地地址 --> 
  <!-- 外部样式 为了共享 -->

<link rel="shortcut icon" type="image/x-icon" href="images/logo.png">  
<style type="text/css">
/*内部样式 只对当前页面*/          /*tag标签名  ID  class*/  /*属性选择器*/  
 body{width: 200px;height: 200px;background: red;}
/*内部样式举例 添加背景色*/  /*标记选择器不用加符号*/   
#box{width: 200px;height: 200px;background: pink;}/*ID名字前加#号选中*//*ID名是维一的*/  
 .main{width: 200px;height: 200px;background:green;}/*class名字前加. 选中*/  
 a{color: green;}/*标记所以a标签颜色*/  
 a[href="http:www.php.cn"]
{color: pink;}/*属性选择器*/   
div a{color:#000;}

#box a{color:red;}/*属性选择器*/
 </style>

</head> <body >
<!-- 内联样式针对当前标签   -->
<!-- 分优先级 外部小于内部小于内联 -->
<!-- style="background: blue;" -->

<a href="http:www.php.cn">PHP中文网</a >

<a href="http:www.taobao.com">淘宝</a >
 <a href="ok.html">ok</a > <div id="box">  
<a href="ok.html">php     </a ></div>

<div class="main"></div> </body> </html>

 

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议