CSS

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>

<!--link rel="stylesheet" href="1.css" type="text/css" /-->

<style type="text/css">
/*@import url(1.css);

div{
		background-color:#09F;
		color:#FFF;
}
.haha{
	background-color:#FF3;
	color:#0C0;
}*/
/*预定样式,实现动态的加载。
.hehe{
	background-color:#C93;
	color:#00F;
}*/
/*
#qq{通常ID的取值在页面中是唯一的,因为该属性除了给css使用,还可以被js使用。id通常都是为了去标示页面中一些特定区域使用的。
	background-color:#000;
	color:#FFF;
}
*//*
span b{关联选择器 选择器中的选择器
	background-color:#09F;
	color:#FFF;
}
*/

/*组合选择器*/
/*
.haha,div b{对多种选择器进行相同样式定义
	background-color:#000;
	color:#C00;
}
*/
/*
伪元素

超链接的状态。

*/

/*未访问*/
a:link{
	background-color:#06F;
	color:#FFF;
	text-decoration:none;
	font-size:18px;
}


/*
鼠标悬停
*/
a:hover{
	background-color:#FFF;
	color:#F00;
	font-size:24px;
}


/*点击效果*/
a:active{
	background-color:#000;
	color:#FFF;
	font-size:36px;
}

/*访问后效果*/

a:visited{
		background-color:#FF9;
		color:#000;
		text-decoration:line-through;
}


p:first-letter{
		font-size:36px;
		color:#F00;
}

div:hover{
		background-color:#F00;
		color:#FFF;
}

input:focus{
	background-color:#09F;
}


#qq{
	float:left;
}
/*

L  V  H  A

*/
</style>

</head>

<body>


<input type="text" />
<input type="text" />
<hr />

<a href="http://www.sina.com.cn" target="_blank">伪元素选择器演示</a>

<hr />

	<!--
    css和html相结合的第一种方式。
    1,每一个html标签中都有一个style样式属性。该属性的值就是css代码。 
    2,使用style标签的方式。 一般都定义在head标签中
    
    
    优先级:
    标签选择器<类选择器<id选择器<style属性
    
    -->

		<div id="qq">这是一个div<b>区域</b>1</div>
		<div class="haha" id="qq">这是一个div区域2</div>
		<span>span<b>区域</b>1</span>
		<span class="haha">span区域2</span>
		<p>这是一个段落1</p>
		<p class="haha">这是一个段落2</p>

</body>
</html>
======================================================================================================

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">

ul{
	list-style-type:none;
	list-style-image:url(1.bmp);
	
}
table{
		border-bottom:#0C0 double 3px;
		border-left:#F00 solid 3px;
		border-right:#FF0 dashed 3px;
		border-top:#0C0 groove 3px;
		width:500px;

}

table td{
		border:#0CF  dotted 1px;
		padding:20px;
		
}

div{
	border:#F90 dashed 2px;
	height:200px;
	width:400px;
}

input {
	border:none;
	border-bottom:#000 1px solid;

}
.haha{
		border:none;
}
</style>
</head>

<body>


姓名:<input type="text"  />成绩:<input type="text"  />

<hr />
<div>div区域</div>

<hr />
<table>

	<tr>
    	<td><input type="text" class="haha" /></td>
        <td><input type="text" class="haha" /></td>
    </tr>
    <tr>
    	<td>单元格一</td>
        <td>单元格一</td>
    </tr>

</table>

<hr />

<ul>
	<li>无序项目列表</li>
	<li>无序项目列表</li>
    <li>无序项目列表</li>
    <li>无序项目列表</li>
</ul>


</body>
</html>
=========================================================================================

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>

<style type="text/css">
/*
body{
	margin:0px;
}
*/
div{
	border:#09F solid 1px;
	height:100px;
	width:200px;/**/

}

#div_1{
	/*border-bottom:#F60 2px dashed;*/
	background-color:#F90;
	/*padding:20px 100px 200px 300px;上 右 下 左
	margin:0px;*/
	float:left;
}
#div_2{
	background-color:#0CF;
	float:left;
	
}
#div_3{
	background-color:#3F0;8
	clear:left;/**/
	
}
	
</style>

</head>

<body>

<div id="div_1">
第一个盒子11第一个盒子11
</div>
<div id="div_2">
第二个盒子22
</div>
<div id="div_3">
第三个盒子33
</div>



</body>
</html>
=================================================================================================================

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>

<style type="text/css">
/*
body{
	margin:0px;
}
*/
div{
	border:#09F solid 1px;
	height:100px;
	width:200px;/**/

}

#div_1{
	/*border-bottom:#F60 2px dashed;*/
	background-color:#F90;
	/*padding:20px 100px 200px 300px;上 右 下 左
	margin:0px;*/
	float:left;
}
#div_2{
	background-color:#0CF;
	float:left;
	
}
#div_3{
	background-color:#3F0;8
	clear:left;/**/
	
}
	
</style>

</head>

<body>

<div id="div_1">
第一个盒子11第一个盒子11
</div>
<div id="div_2">
第二个盒子22
</div>
<div id="div_3">
第三个盒子33
</div>



</body>
</html>
=====================================================================================================================

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>

<style type="text/css">

#imgtext{
		border:#06F dashed 1px;
		width:180px;
}
#img{
		float:right;
}
#text{
		color:#F60;
		font-family:"华文隶书";
}
</style>

</head>

<body>

<div id="imgtext">
    <div id="img">
    	<img src="9.bmp" />
    </div>
    <div id="text">
    	这是一个美女,说明文字。
    	一切尽在不言中。哇
        !这是一个美女,说明文字。
    	一切尽在不言中。哇!
        这是一个美女,说明文字。
    	一切尽在不言中。哇!
    </div>
</div>
</body>
</html>
===============================================================================================================

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>

<style type="text/css">

#text{
		font-family:"华文隶书";
		font-size:24px;
		
		position:absolute;
		top:80px;
		left:10px;
}


#imgtext{
		border:#F60 dotted 1px;
		width:500px;
		position:absolute;
		top:100px;
}
</style>

</head>

<body>

<div id="imgtext">
<div id="img">
<img src="1.jpg" height="300" width="500" />
</div>
<div id="text">
花丛中的美女,我的!
</div>
</div>
</body>
</html>



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值