我可以在没有JS的情况下调整Bootstrap Column spans吗?

时间:2015-01-17 05:45:44

标签: css twitter-bootstrap

我知道这可能完全违背了网格系统和响应的整个想法,但我们只是假设我想要做以下事情: 我有你可以在下面的图片中看到的布局。 enter image description here 问题是最初整个图像+文本部分需要col-md-9,而推文源在1920x 1080屏幕上需要col-md-2范围。但是,当在1280x800等较小分辨率的屏幕上显示时,我可以通过更改图像+文本部分来保持相同的布局,以占用col-md-5范围。所以我的问题是,是否可以使用媒体查询更改元素的col-md类?我知道CSS不能触及元素类,但我想也许bootstrap带有一个解决方案。否则我知道我可以使用JavaScript来获取窗口大小并交换类。 以下是您需要的一些代码。我不想发布任何不相关的代码,但如果你们需要整个事情,我可以设置一个jsfiddle概率。 谢谢 ! 1

HTML:

<div class="newsfeed">
    <div class="container">
        <div class="row">
            <div class="col-md-11 mainfeed">
                <div class="row top-buffer">
                    <div class="col-md-3">
                        <img src="images/chris.jpg" width="190px" />    
                    </div>
                    <div class="col-md-9">
                        <h2 class="pullup">Some text here</h2>
                        <p id="bodypart">Some more text here </p>
                    </div>
                </div>

                <div class="row top-buffer topborder">
                    <div class="col-md-3">
                        <img src="images/city.jpg" width="190px" height="280px" />
                    </div>
                    <div class="col-md-9">
                        <h2 class="pullup">Text text text</h2>
                        <p id="bodypart">Text....</p>
                    </div>
                </div>

                <div class="row top-buffer topborder">
                    <div class="col-md-3">
                        <img src="images/alex.jpg" width="190px" height="280px" />
                    </div>
                    <div class="col-md-9">
                        <h2 class="pullup">Some news text </h2>
                        <p id="bodypart">xxxxxxxxxxx
                        </p>
                    </div>
                </div>
            </div>
            <div class="col-md-1 pull-right">
                <!-- Tweet RRS-->
                <div class="tweets pull-right">
                    <a class="twitter-timeline" href="https://twitter.com/sinanspd" data-widget-id="540693554432323584"
                     width="380px" data-chrome="transparent noscrollbar">Tweets by @sinanspd</a>
                <script>
                    !function(d,s,id){
                        var js,fjs=d.getElementsByTagName(s)[0],
                        p=/^http:/.test(d.location)?'http':'https';
                            if(!d.getElementById(id)){
                                js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";
                                fjs.parentNode.insertBefore(js,fjs);}
                    }(document,"script","twitter-wjs");
                </script>
            </div>

            </div>
        </div>
    </div>
</div>

相关CSS:

/* ----------COMMON STYLING ------ */
body{
    background-color: black !important;  
}

.container{
    width: 100%;
}


.jumbotron{
    height: 340px;
    background-size: cover;
    background-image: url("images/banner.jpg");
    background-repeat: no-repeat;
    background-position: center;
} 


.nav li{
    display: inline;
    margin-right: 130px;
} 

#nomarginleft{
    margin-right: 0px;
}

.nav a{
    font-family: "Crimson Text";
    font-size: 28px;
    font-weight: bold;
    z-index: 2;
    text-decoration: none !important;
}

.pull-left{
    margin-left: -350px;
    margin-top: -30px;
}

.pull-right{
    margin-right: -300px;
    margin-top: -30px;
}


.nav{
    background-color: black;
    width: 100%;
}


.fixed {
    position: fixed; 
    top: 0px; 
    height: 50px; 
    z-index: 1;
    background-color: black;
}

/*--------------------- HOME PAGE ---------------- */
#display{
    width: 960px;
    height: 420px;
    overflow: hidden;
    margin: 30px auto 0px auto;
    border-radius: 4px;
    background-color: white;
}

#display ul{
    position: relative;
    margin: 0;
    padding: 0;
    height:  960px;
    width: 420px;
    list-style: none;
}

#display ul li{
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    width: 960px;
    height: 420px;
 } 

#head > p{
    font-family: "Crimson Text";
    font-size: 30px; 
    font-weight: bold;
}

#head{
    margin-top: 30px;
    margin-left: 220px;
}

.newsfeed{
    width: 86%;
    height: 800px;
    margin-left: -160px;
}

.mainfeed{
    margin-left: 130px;
}
.pullup{
    margin-top: 0px;
}

.top-buffer{
    margin-top: 20px;
 }

.topborder{
     border-top: 1px solid white;
 }


.tweets{
    background-color: rgba(247,12,12,0.3);
    border: 1px solid white;
    margin-left: 50px;
    border-color: white;
 }

@media (min-width: 1000px) and (max-width: 1300px){

.jumbotron{
    height: 250px;
}

.nav li{
    margin-right: 50px;
}

.nav a{
    font-size: 25px;
}

.pull-left{
    margin-left: -60px;
}

.pull-right{
    margin-right: -40px;
}

#display{
    width: 700px;
    height: 350px;
}

#head > p{
    font-size: 25px;
}

#head{
    margin-top: 30px;
    margin-left: 80px;
    display: block;
}

.newsfeed{
    width: 86%;
}

.newsfeed h2{
    font-size: 20px;
}

.mainfeed{
    margin-left: 230px;
}

.newsfeed h2, .newsfeed p{
    margin-left: 0px;
}

.top-buffer{
    width: 800px;
}

.newsfeed .pull-right{
    margin-right:  -120px;
}

.tweets{
    margin-right: -500px;
}
}

1 个答案:

答案 0 :(得分:1)

为什么不更改下面的代码

<div>
    <div class="col-lg-9 col-md-5">
        <h2 class="pullup">Text text text</h2>
        <p id="bodypart">Text....</p>
    </div>


    <div class="col-lg-3 col-md-5">
        <img src="images/alex.jpg" width="190px" height="280px" />
    </div>
</div>

所以现在,在更大的屏幕上,屏幕上我们会分为9个小组和3个小组,在较小的屏幕尺寸上,每个大小为5个小组。

如果您想更改较小屏幕的布局,即平板电脑和屏幕,请分别使用用户col-sm-xx和col-xm-xx。