我相信這是我的一個完整的監督,但我有一個按鈕,我想一個輸入框的直接權利,我的HTML是:提交按鈕不合作
<input type="text" name="q" id="search" />
<input type="submit" name="submit" id="submit" value="Go!" />
和css是:
#main input {
margin: 30px auto auto 130px ;
positiom: absolute;
font-size: 18px;
background: #fff;
border: 3px;
padding: 6px;
z-index: 3;
}
#search {
float: left;
width: 550px;
}
#submit {
width: 60px;
}
#submit::-moz-focus-inner {
border: 0;
padding: 0;
}
The Go!按鈕直接位於提交框左側的下方,任何類型的邊距調整都是徒勞的,它只是停留在那裏。還嘗試使位置絕對和按鈕重疊。
The Go!按鈕將無法正確定位 - 它應該位於我的輸入框的右側,但它會掛在它下面。
我怎樣才能讓它直接定位到我的輸入框?
感謝您的幫助!
編輯:
html{
background: url(images/bg5.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#main{
width: 875px;
height: 350px;
background: url(images/form3.png) 0 0 no-repeat;
margin:250px auto;
z-index: 1;
}
#main form {
width: 850px;
height: 191px;
background: url(images/logo3.png) 0 0 no-repeat;
margin: -165px auto auto -90px;
position: absolute;
z-index: 2;
}
#text {
font-size: 30px;
color: #ffffff;
font-family: parisjetaime;
margin: 189px auto auto 130px ;
line-height: 30px;
}
#main input {
margin: 30px auto auto 130px ;
font-size: 18px;
background: #fff;
border: 3px;
padding: 6px;
z-index: 3;
}
#search {
width: 550px;
}
#submit {
width: 60px;
float: right;
}
#submit::-moz-focus-inner {
border: 0;
padding: 0;
}
從描述中不清楚實際問題是什麼。 – Oded 2011-04-06 21:23:25
抱歉 - 去!按鈕將無法正確定位 - 它應該位於我的輸入框的右側,但它會掛在它下面。 – Sapp 2011-04-06 21:27:17
看起來你已經有了答案,但是請注意,你在#main輸入下拼寫錯誤的「位置」 - 這可能不會幫助任何東西;) – kjl 2011-04-06 21:30:27