列在引导程序中不起作用

阿克拉姆
<div class="row">
   <div class="col-md-6">
       <img class="title-logo" src="logo.jpg" height=100 width:100 alt="mainlogo">
   </div>
   <div class="col-md-6 text-right text-uppercase">
       <h1 class="titel-super text-thin">Live Aider</h1>
       <h4>A Plateform where you can interact</h4>
 </div>
</div>

我想要一行包含两列的上述代码,但它不能与引导程序一起使用。

苏尼尔·博里查

我有测试你的代码,它运行良好。我只是复制粘贴您的代码与两列完美配合。

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row">
   <div class="col-md-6">
       <img class="title-logo" src="http://www.ikoreadaily.co.kr/news/photo/201512/217773_113769_5446.JPG" height=100 width:100 alt="mainlogo">
   </div>
   <div class="col-md-6 text-right text-uppercase">
       <h1 class="titel-super text-thin">Live Aider</h1>
       <h4>A Plateform where you can interact</h4>
 </div>
</div>

您必须检查浏览器宽度并提供您现在使用的完整 html 代码。如果您需要两列并排的小屏幕,请使用“ col-xs-*”。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章