无法拆分行和列的div

时间:2016-10-28 11:05:41

标签: html css asp.net-mvc

Screen shot for Div

使用bootstrap在MVC5中创建此应用程序....

我添加了div:

<div class="divFullWidth" style="margin:10px 0px 0px -15px; height:150px;background-color:grey;">
    <div class="wireframe_div">

        <div class="Row">
            <div class="Cell">
                @Html.Label("Ext :")
            </div>
        </div>
        <div class="Row">
            <div class="Cell">
                @Html.TextBox("txt_Ext", null, new { @class = "form-control" })
            </div>
        </div>
    </div>
</div>

CSS:

  .wireframe_div {
    border: 1px solid black;
    background-color: darkgrey;
     padding: 15px 20px 25px 20px;
.Cell
    {
        display: table-cell;        
        padding-left: 5px;
        padding-right: 5px;

    }
.Row
    {
        display: table-row;
    }
  .divFullWidth { 
       float: left;
      width: 100%;

}

但是我不能像屏幕截图那样拆分div。

任何人都可以帮忙解决这个问题。对网络技术来说是一个新手。

1 个答案:

答案 0 :(得分:0)

<div style="width: 100%; height: 150px;">
        <div style=" width: 100%; height: 30%;">
        Ext <input type="text" style="width: 35%;"/>
        Area <input type="text"  style="width: 10%;"/>
        </div>
        <div style="width: 50%; height: 70%; float: left;  text-align: center;">
        Activity Catagory <input type="text" style="width: 80%;"/>
        </div>
        <div style="width: 50%; height: 70%; float: right;">
            <div style="width: 50%; height: 100%; float: right; text-align: center;">
                Activity Date To<input type="text" style="width: 80%;"/>
            </div>
            <div style="width: 50%; height: 100%; float: left;  text-align: center;">
            Activity Date From <input type="text" style="width: 80%;"/>

            </div>
        </div>

    </div>

也尝试引导它让生活变得轻松