Blogger Information
Blog 15
fans 0
comment 0
visits 9609
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
通过CSS设置HTML常用标签属性2018年8月10日20时00分
Kenxc2011的博客
Original
514 people have browsed it

我们在学习PHP基础时,前端展现的是HTML,所以要熟悉HTML的常用标签设置。

而HTML的样式都是通过CSS,下面我通过通过设置标签的样式属性的3种方式与大家分享:


实例

<!DOCTYPE html> <!-- xml  -->
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>php 中文网--视频教程</title>
	<link rel="stylesheet" type="text/css" href="static/style.css">
	<link rel="stylesheet" type="text/css" href="">
	<style type="text/css">
		body {}
		#box{ width:100px;height: 100px; background: pink;}
		.main{ width:100px;height: 100px; background: green;}
	</style>
</head>
<body >
	<img src="">
	<a href="https://www.baidu.com">百度</a>
	<a href="http://www.php.cn">php中文网</a>
	<a href=""></a>
	<div id="box">123</div>
	<div class="main"></div>
</body>
</html>

运行实例 »

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

(1)通过标签名称设置:body {}

(2)通过id属性设置:#box{ width:100px;height: 100px; background: pink;}

(3)通过class属性设置 : .main{ width:100px;height: 100px; background: green;}

总结:通过标签的属性设置,可以把包含在body元素内的所有元素自动获取这些样式。

通过id属性设置就是把这个唯一标识的元素获取独一无二的样式。

通过class属性设置,可以把相同class属性的元素组设置同一个样式。

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