在css中设置字体和div的位置:
在css中设置字体,一般情况下,我们都是通过font这个css属性来完成,font-family:"字体名字(如:微软雅黑)";还可以使用font-size对字体的大小做限制,如font-size:12px;
div的位置,我们首先需要知道你要将你的这个div固定的位置,也就是left和top,在使用position的定位来做就行,这里给出具体的代码:
<html>
<head>
<style>
headr{
width:300px;
height:200px;
border:1px solid #f00;
position:absoulte;
left:100px; //只是假定的值,具体需测量
top:200px;
}
</head>
<body>
<div class="headr" > //页头
</div>
</body>
</html>
<style type="text/css">{margin:0;padding:0;list-style:none;border:none;font:12px/22px 宋体;}
a{text-decoration:none;}
txt{width:320px;border:1px solid #000;margin:0 auto;text-align:left;}/margin:0 auto;让div居中,text-align:left让文字在div中居左/
</style>
<div class="txt">
<ul>
<li><a href="#">·怎么让这些文字在网页中间,但是文字开头是对齐的</a></li>
<li><a href="#">·怎么让这些文字在网页中间,但是文字开头是对齐的</a></li>
<li><a href="#">·怎么让这些文字在网页中间,但是文字开头是对齐的</a></li>
<li><a href="#">·怎么让这些文字在网页中间,但是文字开头是对齐的</a></li>
<li><a href="#">·怎么让这些文字在网页中间,但是文字开头是对齐的</a></li>
<li><a href="#">·怎么让这些文字在网页中间,但是文字开头是对齐的</a></li>
<li><a href="#">·怎么让这些文字在网页中间,但是文字开头是对齐的</a></li>
</ul>
</div>恩 支持楼上
字体包括:字体font 大小font-size 颜色color,再往深了挖掘,可以还有 字间距letter-spacing 修饰text-decoration(下划线underline等)
一楼说的很好 新建声明后在CSS面板里左侧的第一个定义项就是字体。
分就不用了,希望能帮到你。
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:indexhtml。
2、在indexhtml中的<style>标签中,输入css代码:img{float:left;}。
3、浏览器运行indexhtml页面,此时div标签中的左侧与右侧通过css调整为了浮动而顶部对齐了。
<!doctype html><html>
<head>
<meta charset="utf-8">
<title>易宽带卡密系统</title>
<style>
body{margin:0px; padding:0px;}
body_center{width:900px; height:600px; margin:0 auto;}
body_center logo{width:564px; height:55px; background:url(images/logopng)}
body_center top_right{width:200px; height:14px; float:right; background:#C33}
body_center top_right em{width:16px; height:14px; background:url(screenpng) no-repeat; float:left;}
body_center top_right a{font-size:12px; float:left; font-weight:bold; line-height:14px;}
</style>
</head>
<body>
<div class="body_center">
<div class="logo"></div>
<div class="top_right">
<em></em>
<a href="#">提取码购买</a>
</div>
</div>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)