1
divの左上隅に浮動小数点のリンクを追加したい場合は、それも前面にする必要があります その目的は、そのクリックでブーツラップの折りたたみ機能を切り替えることですリンク。divの左上隅にリンクフロートを作成するには
以下は私のコードです。
<div id="Header" class="container container-fluid well-lg img-rounded shadow" style="background-color:whitesmoke">
<div class="row" id="header">
<div id="content">
<div><a href="#" class="btn-floating halfway-fab waves-effect waves-light red">
</a></div>
</div>
<div class="col-lg-offset-1 col-lg-3 col-md-3 col-sm-6">
@*<a href="@Url.Action("Index", "Home")">*@
<img src="~/Images/svc.jpg" class="img-rounded"/>
@*</a>*@
<br />
<b><i>Report </i></b>
</div>
<div class="col-sm-12 hidden-lg hidden-md" >
<hr style="visibility: hidden" />
</div>
<div class="col-lg-3 col-md-3 col-sm-12">
@*@Html.DropDownListFor(m => m.State, ViewBag.StateList as IEnumerable<selectlistitem>, new { @class = "form-control input-sm", @onchange = "this.form.submit()" })*@
@Html.DropDownListFor(m => m.State, ViewBag.StateList as IEnumerable<SelectListItem>, new { @class = "form-control input-md", @data_toggle = "tooltip", @title = "Select a State from here" })
</div>
<div class="col-sm-12 hidden-lg hidden-md">
<hr style="visibility: hidden" />
</div>
<div class="col-lg-3 col-md-3 col-sm-12" >
@Html.TextBoxFor(m => m.date, new { @class = "form-control input-md", @id = "dp1", @PlaceHolder = "Click Here to Select a Date", @data_toggle = "tooltip", @title = "Select a Date from here" })
</div>
<div class="col-sm-12 hidden-lg hidden-md">
<hr style="visibility: hidden" />
</div>
<div class="col-lg-2 col-md-5 col-sm-12">
<table>
<tr>
<td>
<a href="@Url.Action("Back_Date", "BR")">
<img src="~/Images/oie_28455OHvJAUzA.png" class="img-rounded" height="45px" width="45px" data-toggle="tooltip" title="Go back to previous Date" />
</a>
</td>
<td>
<a href="@Url.Action("Next_Date", "BR")" >
<img src="~/Images/button-round-arrow-right-icon.png" class="img-rounded" height="45px" width="45px" data-toggle="tooltip" title="Go forward to Next Date"/>
</a>
</td>
</tr>
</table>
</div>
</div>
</div>
ITSは作業が、リンクはdivの内側に完全にあり、私はそれが半分外側と内側半分たいです。この赤いプラス記号のように Click to see pic
可能な重複探しているものであるなら、私に知らせて(HTTPS [2ダイブの間で一番上にボタンを配置する方法?]:/ /stackoverflow.com/questions/44870666/how-to-put-a-button-on-top-between-two-dives) –
コードは使用できません。動作中のスニペットや問題を再現するコードの例を提供してください –