2015-09-07 4 views
-1

Как выровнять изображение с предложением абзаца. Пожалуйста, обратитесь к образцу кода ниже.вертикальный и горизонтальный центр изображения и абзац

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" /> 
 
<div class="container"> 
 
    <div class="col-lg-3 col-md-3 col-sm-6 col-xs-12"> 
 
    <img src="http://dummyimage.com/300x200/000/fff" class="img-reponsive" /> 
 
    </div> 
 
    <div class="col-lg-8 col-md-8 col-sm-6 col-xs-12"> 
 
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 
 
     has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop 
 
     publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 
 
     has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop 
 
     publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 
    </div> 
 
</div>

JSfiddle Demo

+0

Что такое пункт, что это значит? –

+0

Пожалуйста, разместите фактический код, который вы пробовали. И что такое пара? – Kristine

+0

Кстати, вы обязаны поместить некоторый код вместе со скрипкой, попробуйте с котировкой жестко -1 –

ответ

0

Попробуйте это:

<div class="container"> 
    <div class="col-md-12"> 
    <img src="http://dummyimage.com/300x200/000/fff" class="img-reponsive pull-left img-thumbnail" />  
    <p> Lorem Ipsum is simply dummy text of the printing and typesetting 
industry. Lorem Ipsum has been the industry's standard dummy text ever 
since the 1500s, when an unknown printer took a galley of type and 
scrambled it to make a type specimen book. It has survived not 
    </div> 
</div> 

Или:

<div class="container"> 
    <div class="row"> 
    <div class="col-lg-3 col-md-3 col-sm-6 col-xs-12"> 
    <img src="http://dummyimage.com/300x200/000/fff" class="img-reponsive pull-left img-thumbnail" /></div> 
     <div class="col-lg-9 col-md-9 col-sm-6 col-xs-12"> 
    <p> Lorem Ipsum is simply dummy text of the printing and typesetting 
industry. Lorem Ipsum has been the industry's standard dummy text ever 
since the 1500s, when an unknown printer took a galley of type and 
scrambled it to make a type specimen book. It has survived not 
     industry. Lorem Ipsum has been the industry's standard dummy text ever 
since the 1500s, when an unknown printer took a galley of type and 
scrambled it to make a type specimen book. It has survived not 
     </div> 
    </div> 
</div> 
0
<div class="container"> 
<table> 
<tr> 
<td> 
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12"> 
    <img src="http://dummyimage.com/300x200/000/fff" class="img-reponsive" /> 
      </div> 
</td> 
<td> 
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> 

       <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
       <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 

</div> 
</td> 
</tr> 
</table> 
</div> 

Это должно работать, просто положить в в таблице, обратите внимание, что вы можете настроить бутстраповских тэги (Col-LG-12 цв-й мкр-12 цв-см-12 Col-хз-12)

0

На самом деле не уверен, что вы имеете в виду, но давайте попробуем, чтобы очистить код немного, и это может быть то, что вы ищете:

  • контейнер должен Хейвея row класс
  • значения атрибутов должны быть от малого до большого
  • У вас не было суммы 12 для col-lg и col-md?
  • Для col-xs, я понимаю, что вы хотите, чтобы изображение было сверху.
  • Я думаю, что вы хотите изображение слева и текст справа, когда экран больше 750 пикселей.
  • Кроме того, нет необходимости добавлять большие значения, это автоматически как более мелкие, поэтому вам не нужно col-lg, если это похоже на col-md.

Так вот чистый код, скажите мне, если это то, что вы хотите:

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" /> 
 
    <div class="row"> 
 
     <div class="col-xs-12 col-sm-6 col-md-4"> 
 
      <img src="http://dummyimage.com/300x200/000/fff" class="img-reponsive" /> 
 
     </div> 
 
     <div class="col-xs-12 col-sm-6 col-md-8"> 
 
      <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 
 
      has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop 
 
      publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 
      <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 
 
      has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop 
 
      publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 
     </div> 
 
    </div>

Смежные вопросы