DIV文字上下居中&DIV居左
DIV文字上下居中
假如你的DIV的高度是30px的话,那么你知道再定义一下line-height(类型-行高)等于30就OK了
<!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=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
.a {
background-color: #FFCCCC;
height: 100px;
width: 200px;
line-height: 100px;
}
-->
</style>
</head>
<body>
<div class="a">看到了吧,我是上下居中的。。</div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
.a {
background-color: #FFCCCC;
height: 100px;
width: 200px;
line-height: 100px;
}
-->
</style>
</head>
<body>
<div class="a">看到了吧,我是上下居中的。。</div>
</body>
</html>
当然这里要注意一点,网页代码的最上边一行一定要加上:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
否则是不会出效果滴。
==================
DIV居左
.test ul{list-style:none;margin:0px;}