如何将图像与包含某些文本的框内联?

时间:2017-08-23 00:52:54

标签: html css

我有一个fiddle,其中我希望将几个图像(键盘,计算机和握手)和文本内嵌到矩形框(包含一些文本),与these images完全相同

我尝试使用display inline-block,display:block,margin-left:auto,margin-right:auto使其内联,但我仍然无法复制它。

我正在使用的HTML代码片段是:

.openings {
    height: 650px;
    width: 100%;
}

.openings .headline-text:before {
    border-top: 1px solid #1072B8;
    display: block;
    position: relative;
    top: -25px;
    margin: 0 auto;
    width: 50%;
    content: "";
}

.openings .headline-text {
    text-align: center;
    font-size: 24px;
    color: #1072B8;
    padding-bottom: 80px;
    padding-top: 160px;
    font-weight: bold;
}

.openings .rectangle {
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 30px;
    margin-right: 400px;
    width: 300px;
    height: 100px;
    border: 1px solid #000;
    background-color: white;
    padding: 10px 10px 10px 100px;
    float: right;
}

.section {
    margin-left: 300px;
    float: left;
    font-style: italic;
    font-weight: bold;
    font-size: 1rem;
    color: #1072B8;
}

.openings .job-opening {
    clear: both;
    height: 150px;
}

.openings {
    height: 1480px;
    width: 100%;
}

0 个答案:

没有答案