作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在尝试将文本添加到输入字段的左侧和标签下方时遇到问题。
我正在使用 Bootstrap 4.3.1。我的 html 看起来像这样:
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- some markup in here -->
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<div class="row">
<label>Sensor URI:</label>
http://<input value="" type="text" id="sensor_uri" min="15" max="1440" class="form-control" required/>
</div>
</div>
它看起来像这样:
<p>
、
div>
等)中,但没有成功。理想情况下,我希望像这样在输入字段前面加上“http://”,以便用户无法编辑它:
最佳答案
你需要做两件事——
form-control-inline
输入上的类,因此它将与“http://”文本 <div>
使其显示在标签下方的单独一行中。 row
div 没有任何 col
s - 这是无效的,所以我在下面删除了它。 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<div class="col-lg-6 col-md-6 col-sm-6">
<!-- some markup in here -->
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<label>Sensor URI:</label>
<div class="inputwrapper">http:// <input value=" " type="text " id="sensor_uri " min="15 " max="1440 " class="form-control-inline" required/>
</div>
</div>
关于html - 如何在输入框前添加文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62766463/
我是一名优秀的程序员,十分优秀!