Jump to content
  • 0

Откуда берется этот пробел между колонками?


Vlad111
 Share

Question

Вот такой код:

<table class='main-center' height='156' width='733' cellpadding='0'  cellpadding='0' hspace='0' vspace='0'>
<tr>
<td class='main-center1' cellspacing='0' cellpadding='0'>
Текст
</td>
<td class='main-center2' border='0' cellspacing='0' cellpadding='0'>
 
</td>
</tr>
</table>

Вот CSS

body { font-family: Tahoma, Verdana, Arial, sans-serif; font-size: 13px; letter-spacing: 0px; color: #000000; margin: 0px; padding: 0px; background: url(images/bg-big.jpg) no-repeat top center;  }

.main-center {
background: url(images/back_manu.jpg);
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
border-width:0px 0px 0px 0px;
width:733;
}

.main-center1{
background-color: #397AB6;
background-image: url(images/right_text1.jpg);
font-family:Verdana,Tahoma,Arial,Sans-Serif;
font-size:12px;
padding:0px 0px 0px 10px;
margin:0px 0px 0px 0px;
border-width:0px 0px 0px 0px;
width:525;
}

.main-center2 {
background-color: #397AB6;
background-image: url(images/right_text2.jpg);
font-family:Verdana,Tahoma,Arial,Sans-Serif;
font-size:12px;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
border-width:0px 0px 0px 0px;
width:208;
}

И почемуто между правой и левой колонкой остается отступ в 1 пиксель.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Ошибка в первой строке кода HTML

Два раза указан параметр cellpadding и ни одного раза cellspacing, который нужно установить в 0.

И вообще, попробуй оптимизировать HTML код вместе с CSS, очень много лишнего понаписано, к примеру в теге

параметры cellpadding и cellspacing вообще ни к чему и ниачем.

Ну примерно так:

HTML

<table class="main-center" cellspacing="0">
<tr>
<td class="main-center1">Текст</td>
<td class="main-center2"> </td>
</tr>
</table>

CSS

* {margin: 0; padding: 0;}

body {
background: url(images/bg-big.jpg) no-repeat top center;
font-family: Tahoma, Verdana, Arial, sans-serif;
font-size: 13px;
color: #000;
}

.main-center {
width: 733px; height: 156px;
background: url(images/back_manu.jpg);
border: 0;
}

.main-center1 {
width: 525px;
background: #397AB6 url(images/right_text1.jpg);
font-family: Verdana,Tahoma,Arial,Sans-Serif;
font-size: 12px;
}

.main-center2 {
background: #397AB6 url(images/right_text2.jpg);
font-family:Verdana,Tahoma,Arial,Sans-Serif;
font-size:12px;
}

Link to comment
Share on other sites

  • 0
в принципе да, пробел исчез после добавления * {margin: 0; padding: 0;}

Вы прочитали сообщение выше с конца, а Вы прочитайте сначала. Я же вам красным шрифтом ошибку указал, почему именно появляется белая полоска между ячейками.

Как центрировать таблицу, это получается уже второй вопрос. Давайте сразу вопросов 10 задавайте, что бы одним махом на все ответить.

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