裏面我有如下設計結構給出:以3個Div的一個DIV
我不允許使用<table>
用於此目的。
我已經使用div和裏面那個div 3 div的圖像中的每個部分1,2和3。
我試圖設計代碼如下:
<div style="right: 0px; position: absolute; height: 77%; width: 40%;" class="sloInputBox">
<b>Correlations</b>
<img alt="fullscreen" src="~/Images/fullscreen.png" style="vertical-align: top; padding-right: 55%; float: right" />
<div id="gvCorrelationData" style="vertical-align: top; height: 60%; top: 3px" class="sloInputBox">
</div>
<b>Manual Correlation</b>
<div style="vertical-align: bottom; height: 33%; bottom: 2px;" class="sloInputBox">
<div style="float:left;width:30%;">
<b>1.</b>
Select a section of the observation to Correlate.
<button onclick="ShowSelection();return false;" style="background-color: #249FDA; color: white; height: 22px; width: 45px; border-radius: 4px;">Select</button>
</div>
<div style="margin:auto;width:30%;">
<b>2.</b>
<div class="sloInputBox" style="width: auto; height: 27%">
@(Html.Kendo().DropDownList().Name("ddlCode").OptionLabel("Select Code...")
.DataTextField("codeTitle")
.DataValueField("compCode").HtmlAttributes(new { style = "width:100%;" }))
</div>
Select a code to associate with.
<button onclick="ResetSelectionAndManualCodeddl();return false;" style="background-color: #249FDA; color: white; height: 22px; width: 45px; border-radius: 4px; float: right">Reset</button>
</div>
<div style="float:right;width:30%;vertical-align:top;">
<b>3.</b>
Save this correlation.
<button onclick="ManualCorrelation();return false;" style="background-color: #249FDA; color: white; height: 22px; width: 55px; border-radius: 4px;">Correlate</button>
</div>
</div>
</div>
但unfortunatele第3節在此代碼是不符合獲得正確。
其觀看如下:
我也試着設置不同的margines ...但它不會幫我。
我該如何解決這個問題?
肯定看起來是與容限或填充相關。你應用了什麼盒子尺寸的方法?你在使用百分比寬度嗎?請粘貼您的HTML和CSS :) –
如果您在縮小寬度時跳轉,那麼您可以從那裏開始。檢查邊距,填充,寬度尺寸。 – CyberDude
@CyberDude我已經嘗試寬度高達20%內部的第一個兩個div ...但第三個div不是內聯 –