博客列表 >HTML基本标签样式,以及类选择器的使用2018-8-14

HTML基本标签样式,以及类选择器的使用2018-8-14

Kamil的博客
Kamil的博客原创
2018年08月14日 20:25:02539浏览

1.实例代码如下


实例

<!DOCTYPE html>
<html>
<head>
	<title>小C商城</title>
	<meta charset="utf-8">
	<link rel="stylesheet" type="text/css" href="/Users/kamil/Desktop/htmlStudy/test.css"><!-- 此css可共享-->
	<link rel="shortcut icon" type="img/x-icon" href="/Users/kamil/Desktop/htmlStudy/xiaomilogo.png"><!--引入资源-->
	<style type="text/css">/*这里定义样式*/
		body{

		}
		a{
			color: red;
		}
		#box{width: 100px;height: 100px;background: blue;}
		.main{width: :100px;height: 100px;background: green;}
		a[href="https://www.google.com"]{color: blue;}
		a[href="http://www.php.cn"]{color: black;}
		div a{color: #ccc;};

		/*这里通过class ID 选择器来控制样式,以及子标签的样式*/
	</style>
</head>
<body>
	<img src="/Users/kamil/Desktop/htmlStudy/show.png">
	<a href="https://www.google.com">google</a>
	<a href="http://www.php.cn">php</a>
	<a href="/Users/kamil/Desktop/htmlStudy/testhtml.html">本地文件</a>
	<div id="box">
		<a href="">show message</a>
	</div>
	<div class="main"></div>
</body>
</html>

运行实例 »

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


2.个标签含义

 <a>  定义超链接

 <div> 定义区块

 <img> 定义图片

 <title>  定义网页文档标题

 <link>链接外部文件

 <style> 定义内部样式


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