即使我使用CSS类来更改宽度,我也无法更改按钮大小。
具有按钮和内容的表单放在<div>
行类中。这样他们就会并排出现。
这是我的一部分 代码:
.row.someDiv{
margin-left: 0px;
margin-right: 0px;
max-width: initial;
}
input[type="text"]{
border: none;
border-bottom: 1px solid;
width: 250px;
margin-bottom: 10px;
background: transparent;
}
.button-size{
width: 100px;
padding-bottom: 20px;
}
&#13;
<div class="row someDiv">
<div class="col-xs-8">
<br/>
<label>
<input type="text" class="text-line" placeholder="Name" required></label><br/>
<label><input type="text" class="text-line" placeholder="Email Address" required></label><br/>
<label><input type="text" class="text-line" placeholder="phone number"></label><br/>
<label><input id="message-size" type="text" placeholder="Message"></label><br/>
<button type="submit" class="button-size space btn btn-block btn-primary"><i class="fa fa-paper-plane">Submit</i></button>
</div>
<div class="col-xs-4">
<p class="content-style"> Want to get in touch? please fill up the form and I'll revert back soon.
</div>
</div>
&#13;
答案 0 :(得分:1)
语法问题C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
到for elem in os.scandir('a'):
if elem.is_file:
tar.add(elem.path)
x
答案 1 :(得分:0)
我明白了。该按钮必须包含在<label>
元素中。我现在正在使用它。即使我不明白为什么不能在没有<label>
的情况下缩小按钮。它以前对我有用。请随意提出答案。
答案 2 :(得分:0)
看起来你正在使用 bootstrap ,在这种情况下,按钮上的btn-block
类使按钮成为“块级元素”(相当于给它css { {1}})
块级元素填充100%的水平空间并将任何其他元素向下推到页面以腾出空间。