之前的文章《學習中值得了解html網頁的基本結構(總結)》中,給大家介紹了一個html基本結構具體非常清楚,有了這個保證你不會顛倒四。以下下篇文章跟大家分享一下html網頁中如何實現居中效果,有需要的朋友可以參考一下。
html居中的元素可以分類為【行內】-【塊狀】-【行內塊狀】
常用的塊狀元素:<div> <p> </p>
<h1>.....<h6> <ol> </ol>
<ul> <dl> <table> <address>ul> </address>
<dl> <table> <address> ; <blockquote> <form>
<p>常用的行內元素:<code><a> <span> <br> <i> <em> <strong> <label> <q> <cite> <code> <var></var>
常用的行內區塊狀元素:<img alt="html網頁中如何實現居中效果(程式碼分享)" > <input>
區塊級元素指定:使用
text-align:center就無效了。 如果需要設定居中,透過設定左右兩邊的margin值為「
auto
通常有三種方式來實作居中
1、透過
table
2、設定
display: inline
3、設定
position:relative
標籤讓標題居中
<p align="center">关关和鸣的雎鸠,栖息在河中的小洲</p>程式碼效果
img圖片居中的方法
#一般來說可以用CSS中的「
text-align:center屬性,
margin:0 auto
img定義一個父標籤,讓這個父標籤裡面的內容居中,那麼img自然就居中
<p align="center">img……</p>input輸入框居中的方法
#
style="text-align:center; "input外部巢狀div,設定div內部元素居中的方法
<div align="center"> <input value="帐号"size="20"> </div>html網頁中如何實作居中效果程式碼範例
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>网页制作</title> <style> *{padding: 0;margin: 0;} .news{width: 1080px;height: 200px;margin: 0 auto;} .left_1{width: 200px;height: 150px;float: left;padding: 10px;} .left_2{width: 200px;height: 150px;float: left;margin-top: 10px;} .center{width: 200px;height: 150px;float: left;padding: 10px;} .right_1{width: 200px;height: 150px;float: left;margin-top: 10px;} .right_2{width: 200px;height: 150px;float: left;padding: 10px;} a{ display: block; text-align: center;} a:hover{color:#00FF00;text-decoration: underline;} input.text{text-align:center;padding:10px 20px;width:300px;} </style> </head> <body> <style type="text/css"> .mydiv{ width:100%; height:500px; text-align:center; } </style> <div style="width:960px; margin:0 auto; height:auto:"> <p style="text-align:center;"><img src="487.jpg" / alt="html網頁中如何實現居中效果(程式碼分享)" ></p> </div> <div class="mydiv"> <div class="reserch"> <div input style="text-align:center;"><input type="text";></div> <button style="height:22px;width: 80px;text-align:center;">php搜一下</button> </div> <div class="news"> <div class="left_1"> <a href="http://www.php.cn/" target="_blank"><img src="5454.jpg" style="max-width:90%" style="max-width:90%" / alt="html網頁中如何實現居中效果(程式碼分享)" ></a> <a href="http://www.php.cn/" target="_blank">图片链接</a> </div> <div class="left_2"> <a href="http://www.php.cn/" target="_blank"><img src="html網頁中如何實現居中效果(程式碼分享)" style="max-width:90%" style="max-width:90%" / alt="html網頁中如何實現居中效果(程式碼分享)" ></a> <a href="http://www.php.cn/" target="_blank">图片链接</a> </div> <div class="center"> <a href="http://www.php.cn/" target="_blank"><img src="79.jpg" style="max-width:90%" style="max-width:90%" / alt="html網頁中如何實現居中效果(程式碼分享)" ></a> <a href="http://www.php.cn/" target="_blank">图片链接</a> </div> <div class="right_1"> <a href="http://www.php.cn/" target="_blank"><img src="89.jpg" style="max-width:90%" style="max-width:90%" / alt="html網頁中如何實現居中效果(程式碼分享)" ></a> <a href="http://www.php.cn/" target="_blank">图片链接</a> </div> <div class="right_2"> <a href="http://www.php.cn/" target="_blank"><img src="877.jpg" style="max-width:90%" style="max-width:90%" / alt="html網頁中如何實現居中效果(程式碼分享)" ></a> <a href="http://www.php.cn/" target="_blank">图片链接</a> </div> </div> </body> </html>程式碼效果圖 #想要單純用html語言的話,那選擇就是
推薦學習:Html影片教學
####以上是html網頁中如何實現居中效果(程式碼分享)的詳細內容。更多資訊請關注PHP中文網其他相關文章!