好的,所以也許我沒有正確地搜索,但我似乎無法找到正好我在找什麼。 我有一個表格,讓我們說這樣的事情:如何保持表單及其子女居中,但我的文字輸入的左上角有一個標籤?
div.some_form {}
div.some_form>span {
font-weight: bold;
position: relative;
text-align: left;
}
div.some_form>form {
text-align: center;
font-size: 16px;
width: 100%;
margin-left: auto;
margin-right: auto;
}
div.some_form>form>input.txtfield {
padding: 13px;
width: 25%;
}
.button {
background-color: #7AB55C;
border: none;
color: white;
text-align: center;
padding: 15px 32px;
}
<div class="some_form">
<form>
<span class="some_class">Some text</span>
<br>
<input type="text" class="txtfield" />
<input type="button" class="button" value="Submit" onclick="doSomething()" />
</form>
</div>
我想要它做的是相當多保持居中輸入(這我能做到),這是爲什麼一切都在div中,我用text-align:center來居中放置所有東西,但我希望span元素被卡在第一個輸入的左上角,這似乎無法做到。 我的意思是,我知道了,但是一旦我調整了窗口大小,跨度就會射入空間(即文本字段將以比跨度更低的速率擴展,這非常棒,因爲即使使用按鈕,文本仍保持居中附加),我似乎無法讓它堅持下去。 (也認真這不是作業,我只是進入CSS,這真的很困擾我..)
任何幫助顯然非常感激! 感謝提前:)
感謝您的幫助!我選擇你作爲答案,因爲它的作品,你解釋了爲什麼:) –