Jump to content
  • 0

текст по блокам


enom
 Share

Question

подскажите пожалуйста.. как можно сделать так, чтобы, допустим, текст в блоке 2 выводился параллельно текста в блоке 1 ??

ну примерно как "нарисовал" ниже :

|————————————|

| блок1 блок2 |

| блок1 блок2 |

| блок1 блок2 |

| блок1 блок2 |

| |

|————————————|

я слышал это можно как то таблицей сделать...

Edited by enom
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Есть вот такой вариант не таблицей.


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>test</title>

<style type="text/css">
.box1 {
background: #91D149; /* цвет фона */
width: 45px; /* ширина блока */
padding: 3px; /* отступы */
float: left; /* обтекание слева */
}
.box2 {
background: #4769E0; /* цвет фона */
width: 45px; /* ширина блока */
padding: 3px; /* отступы */
float: left; /* обтекание слева */
}
.wrap_box {
overflow:hidden; /* отображение содержания блочного элемента */
}
</style>

</head>
<body>

<div class="wrap_box">
<div class="box1">Блок 1 блок 1 блок 1 блок 1 блок 1</div>
<div class="box2">Блок 2 блок 2 блок 2 блок 2 блок 2</div>
</div>

<p>Hello World</p>

</body>
</html>

jsfiddle

Если нужно таблицей можно так:


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>test</title>

<style type="text/css">
.tbox {
border-collapse: collapse; /* как отображать границы */
}
.tbox1 {
background: #91D149; /* цвет фона */
width: 45px; /* ширина блока */
padding: 3px; /* отступы */
}
.tbox2 {
background: #4769E0; /* цвет фона */
width: 45px; /* ширина блока */
padding: 3px; /* отступы */
}
</style>

</head>
<body>

<table class="tbox">
<tr>
<td class="tbox1">Блок 1 блок 1 блок 1 блок 1 блок 1</td>
<td class="tbox2">Блок 2 блок 2 блок 2 блок 2 блок 2</td>
</tr>
</table>

</body>
</html>

Link to comment
Share on other sites

  • 0

Есть вот такой вариант не таблицей.


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>test</title>

<style type="text/css">
.box1 {
background: #91D149; /* цвет фона */
width: 45px; /* ширина блока */
padding: 3px; /* отступы */
float: left; /* обтекание слева */
}
.box2 {
background: #4769E0; /* цвет фона */
width: 45px; /* ширина блока */
padding: 3px; /* отступы */
float: left; /* обтекание слева */
}
.wrap_box {
overflow:hidden; /* отображение содержания блочного элемента */
}
</style>

</head>
<body>

<div class="wrap_box">
<div class="box1">Блок 1 блок 1 блок 1 блок 1 блок 1</div>
<div class="box2">Блок 2 блок 2 блок 2 блок 2 блок 2</div>
</div>

<p>Hello World</p>

</body>
</html>

jsfiddle

Если нужно таблицей можно так:


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>test</title>

<style type="text/css">
.tbox {
border-collapse: collapse; /* как отображать границы */
}
.tbox1 {
background: #91D149; /* цвет фона */
width: 45px; /* ширина блока */
padding: 3px; /* отступы */
}
.tbox2 {
background: #4769E0; /* цвет фона */
width: 45px; /* ширина блока */
padding: 3px; /* отступы */
}
</style>

</head>
<body>

<table class="tbox">
<tr>
<td class="tbox1">Блок 1 блок 1 блок 1 блок 1 блок 1</td>
<td class="tbox2">Блок 2 блок 2 блок 2 блок 2 блок 2</td>
</tr>
</table>

</body>
</html>

ясно) спасибо..

ещё такой маленький вопрос.. что обозначает слово wrap? .. просто очень часто его встречал в цсс стилях..

Link to comment
Share on other sites

  • 0

Wrap если перевести с английского обёртка. В данном примере это всего лишь имя для CSS класса, можно заменить на любое другое слово. Верстальшики обзывают его так обычно потому что, блок с таким именем в большинстве случаев используется для оборачивания других блоков внутри себя.

Edited by Vzor
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy