我使用的是引導網格系統,我想知道如何在沒有太多間距的情況下在我的輸入框(右側)放置紅色星號。將輸入框顯示爲必需。Bootstrap在輸入文本框旁邊放置星號
我無法弄清bootstraps gird系統這樣做。我試圖把它作爲標籤,但它把它放在上面。作爲一個跨度它把它放在下面。我怎樣才能把這個恰好置於輸入之後?
<div id="propertyidsearch">
<div class="col-lg-3 required">
<input type="text" name="searchValue" maxlength="2000" size="40" value="" class="form-control input-sm">
</div>
<div class="col-lg-3">
<button type="button" class="btn-u btn-default margin-bottom-10" id="name" name="name">OWNER NAME</button>
</div>
<div class="col-lg-3">
<button type="button" class="btn-u btn-default margin-bottom-10" id="location" name="location">PROPERTY ADDRESS</button>
</div>
<div class="col-lg-3">
<button type="button" class="btn-u btn-default margin-bottom-10" id="billingAddress" name="billingAddress">BILLING ADDRESS</button>
</div>
</div>
.required:after{
content:"*";
color:red;
}
我也試圖把在課堂上輸入的需要。我正在做與被標記爲重複問題的內容相同的內容,所以只是尋找一些幫助讓它工作的幫助。 –
只是試試我的答案,花花公子 – webeno
...或複製 – webeno