Jump to content
  • 0

xhtml, padding и width 100%


kolpak
 Share

Question

Коллеги, помогите разобраться (подобного вопроса на форуме не нашел).

Есть код:

<!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" xml:lang="ru" lang="ru">
<head>
<title>fucking electorate</title>
<style type="text/css">
table, td {border:1px solid #ccc}
table {border-collapse:collapse}
tr {vertical-align:top}
td {text-align:center}
.d1 {width:100px}
.d2 {width:120px}
.d3 {width:140px}
.wI input {width:100%}
</style>
</head>
<body>
<table id="t">
<tr>
<td class="d1">100</td>
<td class="d2">120</td>
<td class="d3">140</td>
</tr>
<tr>
<td class="wI"><input type="text" name="zopa" value="(.)" /></td>
<td class="wI"><input type="text" name="zopa" value="(.)" /></td>
<td class="wI"><input type="text" name="zopa" value="(.)" /></td>
</tr>
</table>
</body>
</html>

почему input с width = 100% не обращает внимание на padding таблицы (и дива)?

27572037mv5.png

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

выставьте паддинги и тогда все у вас будет.

upd

<!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" xml:lang="ru" lang="ru">
<head>
<title>fucking electorate</title>
<style type="text/css">
table.tbl-cls {border-collapse:collapse;}
table.tbl-cls td {padding:0; vertical-align:top; padding:0 6px 0 4px;} /* right border == left border+border width*2 */
td.d1 {width:100px}
td.d2 {width:120px}
td.d3 {width:140px}
tr.input-data input {
width:100%;
margin:0; padding:0;
border:1px solid #888;
display:block;
}


</style>
</head>
<body>

<table class="tbl-cls">
<tr>
<td class="d1">100</td>
<td class="d2">120</td>
<td class="d3">140</td>
</tr>
<tr class="input-data">
<td><input type="text" name="zopa" value="(.)" /></td>
<td><input type="text" name="zopa" value="(.)" /></td>
<td><input type="text" name="zopa" value="(.)" /></td>
</tr>
</table>

</body>
</html>

вот вам такое решение + оптимизированный CSS код

зы: уж будте так любезны, выкладывая контент/код на сайт потрудитесь убрать цензуру.

tnx u

Link to comment
Share on other sites

  • 0
выставьте паддинги и тогда все у вас будет.

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

вот вам такое решение + оптимизированный CSS код

screenshot2iu6.png

ие6 (под вайном). что-то как-то не так.

добавил пару букв в table.tbl-cls td {padding:0; vertical-align:top; border:1px solid #888; padding:0 6px 0 4px;}

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