前端之家收集整理的这篇文章主要介绍了
html – 在TextBox总共100%宽度旁边放置一个按钮,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当Button具有给定宽度(通过它的值)并且Parent div也具有给定宽度时,是否可以在TextBox旁边放置一个Button.
最后TextBox宽度Button的宽度应该是父div的宽度.
TestExample:
#left
{
float: left;
width: 100%;
}
#right
{
width: auto;
}
最佳答案
form { display: flex; }
input[type=text] { flex-grow: 1; }
原文链接:https://www.f2er.com/html/426564.html