DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS進階教程 >> CSS讓圖片垂直居中和底端對齊的代碼
CSS讓圖片垂直居中和底端對齊的代碼
編輯:CSS進階教程     

本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" lang="zh-CN">
<head>
<title>圖片垂直居中</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css" media="all">
div,img{margin: 0;padding: 0;border: 0;}#content{width: 303px;height: 404px;background: #F63;color: #000;font: 12px Arial,Helvetica,sans-serif;position: relative;}#content[id]{display: table;position: static;}#middle{position: absolute;left: 0;top: 50%;}#middle[id]{display: table-cell;vertical-align: middle;position: static;}#inner{position: relative;left: 0;top: -50%;}
</style>
</head>
<body>
<div id="content">
<div id="middle">
<div id="inner">垂直居中<br />
<img src="http://www.poluoluo.com/images/logo.gif" _fcksavedurl="http://www.poluoluo.com/images/logo.gif" alt="網頁教學網logo" title="網頁教學網logo" /></div>
</div>
</div>
</body>
</html>

演示效果如下:

    [Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運行]

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" lang="zh-CN">
<head>
<title>圖片底端對齊</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css" media="all">
div,img{margin: 0;padding: 0;border: 0;}#content{width: 303px;height: 404px;background: #F63;color: #000;font: 12px Arial,Helvetica,sans-serif;position: relative;}#content div{position: absolute;left: 0;bottom: 0;}
</style>
</head>
<body>
<div id="content">
<div>底端對齊<br />
<img src="http://www.poluoluo.com/images/logo.gif" _fcksavedurl="http://www.poluoluo.com/images/logo.gif" alt="網頁教學網logo" title="網頁教學網logo" /></div>
</div>
</body>
</html>

演示效果如下:

    [Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運行]

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved