当浏览器窗口很小时,如何阻止标签按下输入? (请参见示例)
我尝试过使用text-nowrap,但这只会导致标签重叠。
什么是一个很好的Bootstrap方式,或Bootstrap设计方法来避免这类事情?
我需要输入保持水平行。我必须使用标签,我不能缩短实际的单词(这会解决我的问题,但我不能在这个实现中这样做)。 此外,此示例中右侧此行的输入更多,因此我无法调整col-
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Hello, world!</title>
</head>
<body>
<div class="container">
<div class="row">
<section class="mt-2">
<div class="form-row">
<div class="form-group col-3">
<label for="LastPayDate">Last Pay Date</label>
<input id="LastPayDate" name="LastPayDate" class="form-control" type="text">
</div>
<div class="form-group col-3">
<label for="BasePay">Base Pay</label>
<input id="BasePay" name="BasePay" class="form-control" type="text">
</div>
</div>
</section>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>
&#13;
答案 0 :(得分:0)
你看到没有正确的方法,你给它一个适当的宽度,整个标签可以驻留。 你所能做的只是增加列宽,它会正常工作。
答案 1 :(得分:0)
尝试将CSS添加到label元素,以便所有标签都相等
label{
background-color: green;
margin-top: 10px;
margin-left: 11%;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
width: 100px;
cursor: pointer;
}