Jump to content
  • 0

<input type='text'> с display:table-cell и width:100%


den_alex_96
 Share

Question

Доброго времени суток. 

<!DOCTYPE html>
<html lang="ru">
    <head>
        <meta charset="utf-8" />
        <title>Документ без названия</title>
		<style>
		.table
		{
		display:table;
		width:100%;
		}
		.table-cell
		{
		display:table-cell;
		border:solid 1px black;
		}
		.aaa
		{
		width:100%;
		}
		
		</style>
    </head>
    <body>
 <div>
<form class='table'>
<div class='table-cell'>текст</div>
<input type='text' class='table-cell aaa' maxlength='50'>
<input type='submit' value='отправить' class='table-cell'>
</form>
 </div>
    </body>
</html>

pic1.JPG

Почему текстовое поле занимает всю место справа в строке, и не остается места для кнопки?

Если поменять текстовое поле на div, то всё нормально, div занимает всё доступное пространство, учитываю остальные ячейки в строке, как и должно быть  для таблиц

<!DOCTYPE html>
<html lang="ru">
    <head>
        <meta charset="utf-8" />
        <title>Документ без названия</title>
		<style>
		.table
		{
		display:table;
		width:100%;
		}
		.table-cell
		{
		display:table-cell;
		border:solid 1px black;
		}
		.aaa
		{
		width:100%;
		background:red;
		}
		
		</style>
    </head>
    <body>
 <div>
<form class='table'>
<div class='table-cell'>текст</div>
<div class='table-cell aaa'>текст 1</div>
<input type='submit' value='отправить' class='table-cell'>
</form>
 </div>
    </body>
</html>

pic2.JPG

 

А почему не работает для <input>?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

table-cell с элементами формы

Насколько я понял, ещё не до конца было продумано как table-cell будет работать с элементами формы. Можете даже посмотреть в консоли, во вкладке computed значение свойства display у инпута не меняется на table-cell.

Рекомендуют оборачивать инпут в див и уже к нему применять table-cell.

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