Jump to content
  • 0

Вопрос по таблице


WalkMan
 Share

Question

таблицами верстать не умею

как то не сложилось)

а тут клиенту надо таблицами делать

вот и возник вопрос

есть блок с желтым тайтлом и тремя ячейками в ряд

надо ячейки равномерно по ширине таблицы расположить(ширина таблицы фикс/ячейки фикс)

sample.jpg

слоями знаю как а вот таблицей и что бы кроссово хз

ПС у меня картинка примера не видна хз что не так

пруф на то что должно быть

_http://walkman.asia/htmlforum/sample.jpg

Edited by WalkMan
Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0
Дожили :)

По теме:

Создайте таблицу из 3-x ячеек, каждой ячейке скажите width: 33.3%; В чем проблема то?

трабла в выранивании красных блоков

получается первый и последнйи флоатить по краям?

Link to comment
Share on other sites

  • 0

Какие нафиг флоаты, вы о чем вообще? Все гораздо проще делается:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru">

<head>
<title>An XHTML 1.0 Strict standard template</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />

<style type="text/css">
* {
margin: 0;
padding: 0;
}

html, body {
height: 100%;
}

html {
font-size: 100.1%;
}

body {
margin: 10px;
font: 62.5% Arial, Tahoma, Verdana, sans-serif;
}

table {
width: 600px;
border: 0;
background: red;
}

th {
background: yellow;
}

td {
background: darkred;
}

td.divider {
width: 10px;
background: 0;
}
</style>

<script type="text/javascript">

</script>
</head>

<body>

<table cellspacing="0">
<thead>
<tr>
<th colspan="5">1</th>
</tr>
</thead>
<tbody>
<tr>
<td>
1
</td>
<td class="divider"> </td>
<td>
2
</td>
<td class="divider"> </td>
<td>
3
</td>
</tr>
</tbody>
</table>

</body>
</html>

Link to comment
Share on other sites

  • 0
Какие нафиг флоаты, вы о чем вообще? Все гораздо проще делается:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru">

<head>
<title>An XHTML 1.0 Strict standard template</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />

<style type="text/css">
* {
margin: 0;
padding: 0;
}

html, body {
height: 100%;
}

html {
font-size: 100.1%;
}

body {
margin: 10px;
font: 62.5% Arial, Tahoma, Verdana, sans-serif;
}

table {
width: 600px;
border: 0;
background: red;
}

th {
background: yellow;
}

td {
background: darkred;
}

td.divider {
width: 10px;
background: 0;
}
</style>

<script type="text/javascript">

</script>
</head>

<body>

<table cellspacing="0">
<thead>
<tr>
<th colspan="5">1</th>
</tr>
</thead>
<tbody>
<tr>
<td>
1
</td>
<td class="divider"> </td>
<td>
2
</td>
<td class="divider"> </td>
<td>
3
</td>
</tr>
</tbody>
</table>

</body>
</html>

вот тож задумался над сепаратарами

извращение конечно но что поделать

надо за верстку таблица доплату брать)))))

Link to comment
Share on other sites

  • 0

А я бы попроще даже сделал бы

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru">

<head>
<title>An XHTML 1.0 Strict standard template</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />

<style type="text/css">
* {
margin: 0;
padding: 0;
}

html, body {
height: 100%;
}

html {
font-size: 100.1%;
}

body {
margin: 10px;
font: 62.5% Arial, Tahoma, Verdana, sans-serif;
}

table {
width: 600px;
border: 0;
background: red;
border-collapse: separate;
border-spacing: 10px;
}

th {
background: yellow;
}

td {
background: darkred;
height: 300px;
}


</style>

<script type="text/javascript">

</script>
</head>

<body>

<table cellspacing="0">
<thead>
<tr>
<th colspan="3">1</th>
</tr>
</thead>
<tbody>
<tr>
<td>
1
</td>

<td>
2
</td>

<td>
3
</td>
</tr>
</tbody>
</table>

</body>
</html>

Link to comment
Share on other sites

  • 0
А я бы попроще даже сделал бы

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru">

<head>
<title>An XHTML 1.0 Strict standard template</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />

<style type="text/css">
* {
margin: 0;
padding: 0;
}

html, body {
height: 100%;
}

html {
font-size: 100.1%;
}

body {
margin: 10px;
font: 62.5% Arial, Tahoma, Verdana, sans-serif;
}

table {
width: 600px;
border: 0;
background: red;
border-collapse: separate;
border-spacing: 10px;
}

th {
background: yellow;
}

td {
background: darkred;
height: 300px;
}


</style>

<script type="text/javascript">

</script>
</head>

<body>

<table cellspacing="0">
<thead>
<tr>
<th colspan="3">1</th>
</tr>
</thead>
<tbody>
<tr>
<td>
1
</td>

<td>
2
</td>

<td>
3
</td>
</tr>
</tbody>
</table>

</body>
</html>

psywalker

хз

скопипастил и открыл в ие

чтото не захотел он отображаться правильно

сделал с сепараторами

Link to comment
Share on other sites

  • 0
Фишка в том, что при таком подходе отступы добавятся и сверху, и снизу, и у всех ячеек разом. А нам надо, чтоб только по бокам и только у одной ячейки.

пробовали при помощи дополнительных ячеек?

Link to comment
Share on other sites

  • 0
Фишка в том, что при таком подходе отступы добавятся и сверху, и снизу, и у всех ячеек разом. А нам надо, чтоб только по бокам и только у одной ячейки.

Согласен тада

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