簡體   English   中英

帶引導推拉

[英]Push and Pull with Bootstrap

我只是將Bootstrap放到我的網站上,並且已經對其進行了測試。 我一直在嘗試使用那里的網格系統,並且遇到了一個小問題。 因此,在我的網站上,我有一個標題,它看起來像“按鈕1-6 |徽標|登錄”。 現在,當我的網站縮回至767像素或更小尺寸時,它仍顯示如上,但它們各自都有一行。 因此看起來像這樣:“按鈕1-6(頂部行)|徽標(第二行)|登錄(第三行)”。 現在,每當我嘗試推拉東西時,它仍然無法解決問題。 最終,我希望它在767像素以下的屏幕上像這樣顯示“徽標(頂部行)|按鈕1-6(第二行)|登錄(第三行)”。 這是我的HTML文件:

<div id="wrapper" class="container">
<div id="header" class="row">

    <div id="headerleftside" class="col-lg-4 col-md-4 col-sm-4">
        <div class="row">
            <a href="http://localhost/postin'/_____.html" class="col-lg-4 col-md-4 col-sm-4 col-xs-6">
                <div class="headerbuttons">
                    <h1> Button 1 </h1>
                </div>
            </a>
            <a href="http://localhost/postin'/_____.html" class="col-lg-4 col-md-4 col-sm-4 col-xs-6">
                <div class="headerbuttons">
                    <h1> Button 2 </h1>
                </div>
            </a>
            <a href="http://localhost/postin'/_____.html" class="col-lg-4 col-md-4 col-sm-4 col-xs-6">
                <div class="headerbuttons">
                    <h1> Button 3 </h1>
                </div>
            </a>
            <a href="http://localhost/postin'/_____.html" class="col-lg-4 col-md-4 col-sm-4 col-xs-6">
                <div class="headerbuttons">
                    <h1> Button 4 </h1>
                </div>
            </a>
            <a href="http://localhost/postin'/_____.html" class="col-lg-4 col-md-4 col-sm-4 col-xs-6">
                <div class="headerbuttons">
                    <h1> Button 5 </h1>
                </div>
            </a>
            <a href="http://localhost/postin'/_____.html" class="col-lg-4 col-md-4 col-sm-4 col-xs-6">
                <div class="headerbuttons">
                    <h1> Button 6 </h1>
                </div>
            </a>
        </div>
    </div>


    <div id="headertitle" class="col-lg-4 col-md-4 col-sm-4">

    </div>


    <div id="headerrightside" class="col-lg-4 col-md-4 col-sm-4">
        <form action="action.php" method="post">
            <button id="headersubmit" input type="submit"> Login </button>
            <p class="logininputboxs"> <input type="text" name="username" placeholder="Userame" required/> </p>
            <p class="logininputboxs"> <input type="password" name="password" placeholder="Password" required/> </p>
        </form>
    </div>

</div>
</div>

還請注意,上面的代碼沒有,和其他標簽,因為該文件被PHP用作include()。 然后,CSS文件如下:

/*
Used Colors:
• Black - Black
• Orange - Orange
• Light Blue - #4DB8FF
• Normal Blue - #296ACC
• Normal Blue (Darker) - #2156A6
• Gray - #292D30
*/

/*-------------------------------------------------------*/

#wrapper {
    width: 100%;
    height: 750px;
    position: absolute;
}

/*-------------------------------------------------------*/

#header {
    height: 15%;
    background-color: #292D30;
    position: static;
    border-bottom: 5px solid #296ACC;
    z-index: 5;
}

/*-------------------------------------------------------*/

#headerleftside {
    background-color: #292D30;
}

.headerbuttons {
    background-color: black;
    font-size: 65%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 0%;
    font-color: #4DB8FF; /*The color is defined in the <head>, as well as the hover.*/
    border: 1px solid white;
    border-radius: 5px;
}

/*-------------------------------------------------------*/

#headertitle {
    height: 120%;
    background-color: black;
    border-bottom: 5px solid #2156A6;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 10;
    background: black url("http://localhost/postin'/title.png") no-repeat center center;
}

#headertitle:hover {
    box-shadow: 0px 0px 5px 5px #2156A6;
    z-index: 10;
    background: black url("http://localhost/postin'/title_with_logo.png") no-repeat center center;
}

/*-------------------------------------------------------*/

#headerrightside {
    background-color: #292D30; 
}

.logininputboxs {
    margin-left: 5%;
    margin-top: 0%
}

input[type=text] {
    font-family: courier;
    font-size: 80%;
    height: 20%;
    border: 1px solid #4DB8FF;
    border-radius: 3px;
}

input[type=password] {
    font-family: courier;
    font-size: 80%;
    height: 20%;
    border: 1px solid #4DB8FF;
    border-radius: 3px;
}

.input_error_required {
    font-family: courier;
    font-size: 80%;
    height: 20%;
    border: 1px solid red;
    border-radius: 3px;
}

.input_error_unique {
    font-family: courier;
    font-size: 80%;
    height: 20%;
    border: 1px solid red;
    border-radius: 3px;
}

#headersubmit {
    width: 15%;
    height: 10%;
    font-size: 100%;
    border: 1px solid white;
    border-radius: 3px;
    text-align: center;
    color: #4DB8FF;
    background-color: black;
    margin-left: 45%;
}

/*-------------------------------------------------------*/

#sidebar {
    height: 84%;
    width: 20%;
    background-color: red;
    position: static;
    z-index: 1;
}

.sidebarbuttons {
    width: 80%;
    height: 12%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 5px;
    position: relative;
    text-align: center;
    font-size: 80%;
    line-height: 500%;
    top: 5%;
}

/*-------------------------------------------------------*/

a, u {
    text-decoration: none; !important
}

然后,最后,實際文件也由PHP的Include()完成:

<html lang="en-US">

<link rel="icon" type="image/png" href="http://localhost/postin'/favicon.ico?v=2">

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="bootstrap-3.3.1-dist/dist/css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="style.css"/>

<style type="text/css">
<!--
    body {
        margin: 0px;
    }
-->
</style>
<style type="text/css">
    a:link {color: #4DB8FF;}      /* unvisited link */
    a:visited {color: #4DB8FF;}   /* visited link */
    a:hover {color: orange;}     /* mouse over link */
    a:active {color: orange;}    /* selected link */
</style>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script>
<script src="js/bootstrap.min.js"> </script>
  <div class="container">
      <div class="row">

        <div class="col-sm-4 col-sm-push-4">
         LOGO
        </div><!-- /.col-sm-4 -->

        <div class="col-sm-4 col-sm-pull-4">
         BUTTONS
        </div><!-- /.col-sm-4 -->

        <div class="col-sm-4">
         OTHER STUFF
        </div><!-- /.col-sm-4 -->

      </div><!-- /.row -->

  </div><!-- /.container -->

演示: https : //jsbin.com/mutoju/1/edit

  1. 在小視口上訂購html
  2. 以最小寬度推拉

.col-sm-4.col-md-4.col-lg-4 是父母的33.3333%。 .col-sm- min-width(默認為768px)直到任何時候,該大小都將變為。 因此,您無需使用.col-md-4.col-lg-4 ,這是多余的。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM