当屏幕缩小的时候,第二个input输入框为什么会移到下一行,如何让他在一行显示,自动弹出滚动条?

1.如何让他在一行显示,自动弹出滚动条?
2.如何让他自动伸缩,不弹出滚动条?
图片描述

图片描述

 <div  class="center">
           <label>门店名称</label>
           <input type="text" name="">
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <label>门店地址</label>
           <input type="text" name="">
   </div>
阅读 3.6k
4 个回答

第一个问题:
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>问题</title>
    <style>
        @media only screen and (min-width: 100px) and (max-width: 550px) {
            .center {
                width: 500%;
            }
        }
    </style>
</head>

<body>
    <div class="center">
        <label>门店名称</label>
        <input type="text" name=""> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <label>门店地址</label>
        <input type="text" name="">
    </div>
</body>

</html>

第二个问题:
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>问题</title>
    <style>
        input {
            margin-right: 30px;
        }
        @media only screen and (min-width: 510px) and (max-width: 550px) {
            input {
                width: 140px;
            }
        }
        @media only screen and (min-width: 488px) and (max-width: 510px) {
            input {
                width: 130px;
            }
        }
        @media only screen and (min-width: 448px) and (max-width: 488px) {
            input {
                width: 110px;
            }
        }
        @media only screen and (min-width: 408px) and (max-width: 448px) {
            input {
                width: 90px;
            }
        }
        @media only screen and (min-width: 388px) and (max-width: 408px) {
            input {
                width: 80px;
            }
        }
        @media only screen and (min-width: 100px) and (max-width: 388px) {
            input {
                display: block;
            }
        }
    </style>
</head>

<body>
    <div class="center">
        <label>门店名称</label>
        <input type="text" name=""> 
        <label>门店地址</label>
        <input type="text" name="">
    </div>
</body>

</html>

设置最小的min-width给center的class类;小于最小宽度就会出现滚动条

  1. 只在一行显示, 设置min-width

  2. 自动伸缩,使用相对单位,如百分比,rem等,网格布局.可以参考下Bootstrap。

一行显示,自动弹出滚动条

css

.center {
    white-space: nowrap; /* 不换行 */
    width: 100%; /* 设置宽度 */
    overflow-x: auto; /* 横向超出范围则显示滚动条 */
}

效果:
clipboard.png
clipboard.png

自动伸缩,不弹出滚动条

使用百分比(或者相对宽度)布局其中的元素(下面只是个示例)
CSS

.center {
    white-space: nowrap;
    width: 100%;
    overflow-x: hidden;
}

.center label {
    float: left;
    width: 20%;
}

.center input {
    float: left;
    width: 30%;
}

HTML(将其中的空格去掉,空格会影响布局)

</style> <div  class="center">
    <label>门店名称</label>
    <input type="text" name="">
    <label>门店地址</label>
    <input type="text" name="">
</div>

效果:
clipboard.png
clipboard.png

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题