gpt4 book ai didi

html - Bootstrap 全宽设计

转载 作者:行者123 更新时间:2023-11-28 05:21:34 25 4
gpt4 key购买 nike

我想为 div 设置如下图所示的样式。

enter image description here

我设计了一些但不是完整的宽度,它还在移动 View 中显示侧滚动。

请告诉我如何在完整的宽度中做到这一点。

我的 HTML 代码

#news_and_cv {
background: #e6e6e6;
}
#send_cv {
background: #e6e6e6;
padding: 25px 0px 20px 0px;
}
#news {
background: #02bed4;
padding: 25px 0px 20px 0px;
}
.submit {
padding: 13px 20%;
background: #02bed4;
color: #fff;
text-transform: uppercase;
font-size: 18px;
letter-spacing: 1.5px;
border: 1px solid #fff;
text-align: center;
margin-top: 30px;
}
.submit:hover {
background: #02bed4;
}
.form-style {
display: block;
width: 80%;
height: 37px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
border: 1px solid #ccc;
}
.attach {
margin-left: 10%;
float: left;
}
#send_cv form,
input {
margin: 0 auto;
}
.news_detail {
padding: 0px 15px;
color: #fff;
margin-bottom: 13px;
margin-top: 13px;
}
.news_detail p {
text-align: justify;
margin-bottom: 20px;
}
.news_detail a {
color: #fff;
text-decoration: underline;
}
.head_title_main {
text-align: center;
font-family: 'Marcellus';
font-size: 35px;
font-variant: small-caps;
letter-spacing: 2px;
color: #505050;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<section id="news_and_cv">
<div class="container">
<div class="row">
<div class="col-md-7" id="send_cv">
<div class="row">
<div class="col-md-12">
<div class="head_title_main">Send Your CV</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<form style="text-align:center;">
<input class="form-style" type="text" placeholder="First Name" />
<br/>
<input class="form-style" type="text" placeholder="Last Name" />
<br/>
<input class="form-style" type="email" placeholder="Email" />
<br/>
<input class="form-style" type="tel" placeholder="Phone" />
<br/>
<input class="attach" type="file" /> <span>Attach CV (pdf, doc, docx)</span>
<br/>
<input type="submit" class="submit" value="Submit" />
</form>
</div>
</div>
</div>
<!--end of col-md-7-->

<div class="col-md-5" id="news">
<div class="row">
<div class="col-md-12">
<div class="head_title_main">News</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="news_detail">
<h4>Urgent opening for Electrical Engineering</h4>
<p>Lorem ipsum dolor amet, consectetur adipite scinelit vestibulum vel quam sitare amet odio ultricies dapbus acer vitae.</p>
<span>06/06/2016</span> <span class="pull-right"><a href="#">Read more</a></span>
<hr>
</div>

<div class="news_detail">
<h4>Urgent opening for Electrical Engineering</h4>
<p>Lorem ipsum dolor amet, consectetur adipite scinelit vestibulum vel quam sitare amet odio ultricies dapbus acer vitae.</p>
<span>06/06/2016</span> <span class="pull-right"><a href="#">Read more</a></span>
</div>
</div>
</div>
</div>
<!--End of col-md-5-->
</div>
</div>
</section>

最佳答案

根据 bootstrap docs ,对于全 Angular ,您必须使用 .container-fluid 而不是 .container ,它在桌面 View 中被限制为 width:1170px

并移除.col-md-*中嵌套的.rows否则会导致h-scrollbar

要移除超小型设备中的水平滚动条,您必须使用 xs 类,通过使用 .col-xs-12

#news_and_cv {
background: #e6e6e6;
}
#send_cv {
background: #e6e6e6;
padding: 25px 0px 20px 0px;
}
#news {
background: #02bed4;
padding: 25px 0px 20px 0px;
}
.submit {
padding: 13px 20%;
background: #02bed4;
color: #fff;
text-transform: uppercase;
font-size: 18px;
letter-spacing: 1.5px;
border: 1px solid #fff;
text-align: center;
margin-top: 30px;
}
.submit:hover {
background: #02bed4;
}
.form-style {
display: block;
width: 80%;
height: 37px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
border: 1px solid #ccc;
}
.attach {
margin-left: 10%;
float: left;
}
#send_cv form,
input {
margin: 0 auto;
}
.news_detail {
padding: 0px 15px;
color: #fff;
margin-bottom: 13px;
margin-top: 13px;
}
.news_detail p {
text-align: justify;
margin-bottom: 20px;
}
.news_detail a {
color: #fff;
text-decoration: underline;
}
.head_title_main {
text-align: center;
font-family: 'Marcellus';
font-size: 35px;
font-variant: small-caps;
letter-spacing: 2px;
color: #505050;
font-weight: bold;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<section id="news_and_cv">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-7" id="send_cv">

<div class="head_title_main">Send Your CV</div>

<form style="text-align:center;">
<input class="form-style" type="text" placeholder="First Name" />
<br/>
<input class="form-style" type="text" placeholder="Last Name" />
<br/>
<input class="form-style" type="email" placeholder="Email" />
<br/>
<input class="form-style" type="tel" placeholder="Phone" />
<br/>
<input class="attach" type="file" /> <span>Attach CV (pdf, doc, docx)</span>
<br/>
<input type="submit" class="submit" value="Submit" />
</form>
</div>
<!--end of col-md-7-->

<div class="col-xs-12 col-md-5" id="news">

<div class="head_title_main">News</div>
<div class="news_detail">
<h4>Urgent opening for Electrical Engineering</h4>
<p>Lorem ipsum dolor amet, consectetur adipite scinelit vestibulum vel quam sitare amet odio ultricies dapbus acer vitae.</p>
<span>06/06/2016</span> <span class="pull-right"><a href="#">Read more</a></span>
<hr />
</div>

<div class="news_detail">
<h4>Urgent opening for Electrical Engineering</h4>
<p>Lorem ipsum dolor amet, consectetur adipite scinelit vestibulum vel quam sitare amet odio ultricies dapbus acer vitae.</p>
<span>06/06/2016</span> <span class="pull-right"><a href="#">Read more</a></span>
</div>
</div>
</div>
</div>
<!--End of col-md-5-->

关于html - Bootstrap 全宽设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38051716/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com