首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >引导两列并排,一列全宽,另一列在包含文本的容器中

引导两列并排,一列全宽,另一列在包含文本的容器中
EN

Stack Overflow用户
提问于 2017-08-11 13:17:49
回答 1查看 1.2K关注 0票数 0

我正在尝试实现这一输出

我想要显示此文本与红色框和红色框的意思与容器。右侧没问题,但左侧有问题..

我试过了

代码语言:javascript
复制
<style type="text/css"> 
.p-r {
    padding-right: 0;
    padding-left: 0;
    }</style>

<div class="container-fluid">

    <div class="row">

      <div class="col-md-6">
          <h1>SCANNING & DIGITIZATION</h1>
          <p>We are engaged in all forms of document digitization, image scan & data capture. From microfilm / microfiche and aperture card scanning, to automated invoice processing, through to large format scanning and everything in between. We process well over a million per pages a month on site or in our client’s offices. We have decades of experience, a highly knowledgeable staff and scalable capacity. With clients from virtually every industry, we are used to tight turnarounds and can provide the software, hardware, and manpower to assist with backfile conversion or document digitization, freeing you to concentrate on business.</p>
      </div>

      <div class="col-md-6 p-r">
        <img src=https://ask.qcloudimg.com/http-save/yehe-900000/4bfad9e0939d8cc48dae7e59ced3ddd8.jpeg class="img-responsive img-full">
      </div>

    </div>

  </div>
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-08-11 14:56:58

这就是你要找的东西吗:jsfiddle.net

代码语言:javascript
复制
.p-r:before {
 content: '';
 position: absolute;
 width: 200%;
 height: 100%;
 left: 0;
 bottom: 0;
 background: url(https://i.stack.imgur.com/zOGb2.jpg) no-repeat center;
 background-size: cover;
}
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/45627456

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档