CSS 背景图片居中的示例代码

发布时间:2019-11-27编辑:脚本学堂
分享一例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>
<title>CSS背景始终居中显示-www.jb200.com</title>
<style>
body {
 font: 11px/22px Verdana, Geneva, Arial, Helvetica, sans-serif;
 background-color: #FFFFFF;
 background-image: url(/img/20131209/peppers1.jpg);
 background-repeat: no-repeat;
 background-position: center center;
}
#content {
 margin-left: 220px;
 margin-top: 40px;
 margin-right: 80px;
}
</style>
</head>
<body>
<div id="content">
 <h1>Chinese style stuffed peppers</h1>
 <ul>
  <li>1 tablespoon of oil</li>
  <li>1 crushed garlic clove</li>
  <li>Peeled and finely chopped fresh ginger root</li>
  <li>250g minced pork, beef or Quorn</li>
  <li>1 chopped spring onion</li>
  <li>1 chopped celery stick</li>
  <li>Grated rind of 1 lemon</li>
  <li>Finely chopped red chilli (optional)</li>
  <li>4 large green peppers</li>
 </ul>
 <p>本节分享的这段css代码,实现了背景图片的始终居中显示,效果还是不错的,希望脚本学堂的朋友能喜欢。</p>
 <p>Heat the oil in a wok. Add the garlic and stir fry until golden.</p>
 <p>Reduce the heat down and then add the ginger and the mince. Stir fry until this is nicely browned then add the other ingredients (apart from the peppers). 本节分享的这段css代码,实现了背景图片的始终居中显示,效果还是不错的,希望脚本学堂的朋友能喜欢。</p>
 <p>Core and remove the seeds of the peppers and cut them into quarters.</p>
 <p>Divide the mince mixture between these quarters and arrange the peppers in an oven proof dish</p>
 <p>本节分享的这段css代码,实现了背景图片的始终居中显示,效果还是不错的,希望脚本学堂的朋友能喜欢。</p>
</div>
</body>
</html>

>>> 查看更多 css 居中 相关教程 <<<