我試圖學習使用Twitter引導。它適用於桌面和響應式作品。假設我正在使用span8和span4。我無法弄清楚如何強制iPad縱向視圖在span8下堆疊span4。Twitter引導和iPad
我在頭部部分,視口和響應CSS文件中有正確的標記。
任何想法?
更新:
這是我的。當我縮小網頁瀏覽器窗口時,我可以看到它是如何響應的(最終span4在span8下移動)。如果我在iPad上處於肖像模式,不要將span8和span4堆疊在一起,而是要span8,然後span4堆疊在span8以下。
在頭<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/bootstrap-responsive.css">
在身體
<div class="container">
<div class="row">
<div class="span8">
<?php while (have_posts()) : the_post() ?>
<h4><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" ><?php the_title(); ?></a></h4>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
<div class="span4">
hello this is a test to see if columns are fluid.
</div>
</div>
</div>
在頁腳
<script src="./js/bootstrap.js"></script>
你可以jsfiddle或更好地響應使用'行流體'鏈接http://twitter.github.com/bootstrap/scaffolding.html#fluidGridSystem – 2013-02-24 14:31:40