<html>
<head>
<link
href="1.css"
type="text/css"
rel="stylesheet">
</head>
<body>
任意的代码
</html>
上面就可以把你的外部CSS样式的文件添加到你的网页中,
在Dreamweaver,Frontpage都可以这样加,
【注意】这里的CSS与你的网页在同一个目录下面,这里使用的CSS文件为1.css。
文字在图片上显示
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="UTF-8">
<style>
#abox{
position:relative/*容器相对定位*/
width:300px/*宽度300px*/
margin:0 auto/*横向居中*/
}
#abox img{
width:300px/*宽度300px*/
}
span{
position:absolute/*文字容器绝对定位*/
display:block/*span转为块元素*/
width:100%/*宽度相对于父容器100%*/
text-align:center/*文字居中*/
top:0/*距离父容器顶部0*/
left:0/*距离父容器左侧0*/
color:red/*文字颜色红色*/
font-size:18px/*文字大小既文字高度18px*/
font-weight:bold/*文字加粗*/
}
</style>
</head>
<body>
<div id="abox"><!--容器,相对定位-->
<img src="123.jpg"><!--图片-->
<span>我要显示文字</span><!--文字,绝对定位-->
</div>
</body>
</html>