div居中這個用css控制或html標簽控制就行了,跟php沒有關(guān)系的,如用下面的代碼
為防城港等地區(qū)用戶提供了全套網(wǎng)頁設計制作服務,及防城港網(wǎng)站建設行業(yè)解決方案。主營業(yè)務為成都網(wǎng)站制作、網(wǎng)站建設、外貿(mào)網(wǎng)站建設、防城港網(wǎng)站設計,以傳統(tǒng)方式定制建設網(wǎng)站,并提供域名空間備案等一條龍服務,秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
centerdiv居中的內(nèi)容/div/center或者
div style="text-align:center"居中的內(nèi)容/div
居中是頁面布局的事,和php沒有關(guān)系
你最好貼點代碼,讓我們知道你是div布局還是table布局。
2.一般居中有幾種方式:
1)直接使用center標簽。例如center劇中/center
2)css的text-align:center
3)align="center"
4)頁面整體居中:
設置body
body{margin:0;padding:0}
設置容器 -- 需要設置容器寬度
.main{width:1000px;margin:auto;padding:auto;}
3.
有幾種解決辦法。
1、添加樣式text-align:?center;?內(nèi)容居中。
2、給表單一個容器DIV,然后給DIV添加居中的樣式。margin:0?auto?;
如果以上辦法不能解決??赡苁怯幸恍┘嫒莸膯栴}、或者是受前面內(nèi)容的影響。
那可以在表單的前面添加一個去除浮動的樣式。
clear:both
比如這個例子: 就給表單form添加了一個容器table,并給table設置align=“center"居中的樣式。
table?align="center"?width="500"?border="0"?cellpadding="2"?cellspacing="0"
caption?align="center"h2LAMP學員基本信息/h2/caption
form?action="server.php"?method="post"
tr !--??使用輸入域定義姓名輸入框?---
th姓名:/th
td?input?type="text"?name="username"?size="20"?//td
/tr
tr?????!--?使用單選按鈕域定義性別輸入框?--
th性別:/th
td
input?type="radio"?name="sex"?value="1"?checked="checked"?/男
input?type="radio"?name="sex"?value="2"?/女
input?type="radio"?name="sex"?value="3"?/保密
/td
/tr
tr !--??使用下拉列表域定義學歷輸入框??--
th學歷:/th
td
select?name="edu"
option--請選擇--/option
option?value="1"高中/option
option?value="2"大專/option
option?value="3"本科/option
option?value="4"研究生/option
option?value="5"其他/option
/select
/td
/tr
tr !--?使用復選框按鈕域定義選修課程輸入框?--
th選修課程:/th
td
input?type="checkbox"?name="course[]"?value="4"Linux
input?type="checkbox"?name="course[]"?value="5"Apache
input?type="checkbox"?name="course[]"?value="6"Mysql
input?type="checkbox"?name="course[]"?value="7"PHP
/td
/tr
tr !--?使用多行輸入框定義自我[評價輸入框?--
th自我評價:/th
tdtextarea?name="eval"?rows="4"?cols="40"/textarea/td
/tr
tr !--??定義提交和重置兩個按鈕--
td?colspan="2"?align="center"
input?type="submit"?name="submit"?value="提交"
input?type="reset"?name="reset"?value="重置"
/td
/tr
/form
/table
你這個是絕對定位吧。有公式的
{left:50%;height:50%;margin-left:-(你中間內(nèi)容部分的總寬度)/2;margin-top:-(你浮動的對象的總高度)/2;}