Jump to content
  • 0

Как разместить два блока


alleclf
 Share

Question

Как можно разместить два блока на всю ширину родителя, если один блок определенного размера, а второй должен растянуться.

Например, форма со строкой для ввода текста и кнопка. То есть, кнопка всегда одного размера, а строка должна заполнить всё оставшееся пространство.

Заготовка - http://jsfiddle.net/n1tp49a1/

Нужен кроссбраузерный вариант работающий на всех устройствах включая мобильники.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Теперь только проверяй, какие браузеры поддерживают свойство box-sizing

http://jsfiddle.net/k3hk6ja9/

<div class="main">
  <div id="menu"> 
     <input name="storyt" value="" type="text">
  </div>
  <div id="content">
    <button name="sendb" type="submit">btn</button>
  </div>
</div>
.main {
  position: relative;
}

#menu {
   width: 100%;
   padding-right: 35px;
   box-sizing: border-box;
 }
 
#content {
  position: absolute;
  top: 0;
  right: 0;
}

input {
  width: 100%;
}
button{
  width:30px;
}

 

http://jsfiddle.net/yRcg7/1/

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