>  기사  >  웹 프론트엔드  >  怎么样设置只让网页两边的空白部分加上背景_html/css_WEB-ITnose

怎么样设置只让网页两边的空白部分加上背景_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 12:14:293220검색

怎么样设置只让网页两边的空白部分加上背景,中间的背景颜色不变。


回复讨论(解决方案)

描述不够详细啊..是这个意思不:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en">	<head>		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />		<title>HTML</title>		<meta name="author" content="admin" />		<!-- Date: 2012-08-09 -->		<style type="text/css">		body{			background-image: url("http://www.zastavki.com/pictures/1280x1024/2008/Photoshop_Wolf_005239_.jpg") ;			background-repeat: repeat-x;		}		div{			height:100%;width:800px;border-left: 1px solid #000;border-right: 1px solid #000;position: absolute;background-color:#ddd;left:25%;		}		</style>	</head><body><div></div></body></html>

www.kuailebi.com 就是这个网址打开后两边有空白,我想把这个网站(所有的页面)两边的空白地方都用一个背景颜色或者一张背景图片填充,而中间的背景颜色不用去管它。

网站的css代码
body和#wrap改成你想要的背景或颜色就行了

body{font:12px/18px 宋体;color:#494949;background-color:#000  }#wrap{width:994px;margin:0 auto;background-color:#fff}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.