CSS实现菜单背景自适应宽度的方法

怎么让CSS实现菜单背景自适应宽度。
已邀请:

夜云 - 代码客工程师

赞同来自: 酷鱼

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>
<style type="text/css">
<!--
.load {
background: url(images/9_o.png) no-repeat right;
position: absolute;margin-left:5px;
}
.load span {
height: 66px;
background: url(images/9_o.png) no-repeat;
display: block;
font-size: 14px;
line-height: 66px;
font-weight: bold;
padding-left: 115px;
margin-right: 15px;
margin-left: -5px;
}
-->
</style>
</head>
<body>
<div class="load"><span>脚本之家网站</span></div>
<div class="load" style="top:100px"><span>提供最新的网络编程、脚本编程、网页制作、网页设计、网页特效。</span></div>
</body>
</html>
希望对大家有帮助

要回复问题请先登录注册