Chrome无法内联显示图片

时间:2016-06-09 16:29:22

标签: html css twitter-bootstrap google-chrome inline

有没有人遇到过谷歌Chrome浏览器中没有显示图片inline的问题,即使使用了display:inline-block和其他css代码?在任何其他浏览器中,所有内容都按照预期进行描述。但是,当在Chrome中打开网站时,第4张图片才突然出现在另一行中。

问题如下:problem

代码:

HTML

<head>
 <meta charset="utf-8">
 <meta http-equiv="X-UA-Compatible" content="IE=edge">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <title></title>
 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
 <link rel="stylesheet" href="css/styles.css">
</head>


<li class="timeline-inverted">
            <div class="timeline-panel">
                <div class="timeline-heading">
                    <h4 class="timeline-title">1981-1990</h4>
                </div>
                <div class="timeline-body">
                    <p>Some text</p>
                    <p>Some more text</p>
                </div>
            </div><div class="timeline-picture-body">
                <img class="timeline-images-left padding-bottom" src="http://placehold.it/250x250">
                <img class="timeline-images-left padding-bottom" src="http://placehold.it/250x250">
                <img class="timeline-images-left align" src="http://placehold.it/250x250">
                <img class="timeline-images-left align" src="http://placehold.it/250x250">
            </div>
</li>

CSS

/*body*/
body {
 background-color: white;
}
.panel {
 background-color: white;
 color: black;
 border-radius: 0;
 text-align: justify;
 font-size: 1.3em;
}
.panel-extra {
 padding: 10px 0;
 margin-top: 25px;
 background-color: lightgrey;
 border-radius: 0;
 text-align: center;
 font-size: 1.3em;
 font-weight: bold;
}
.box {
 padding-top: 30px;
 padding-bottom: 30px;
 border-bottom-width: 3px;
 border-bottom-color: lightgrey;
 border-bottom-style: solid; 
}
/*Timeline*/

.timeline {
list-style: none;
padding: 20px 0 20px;
position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
}

.timeline > li {
    margin-bottom: 20px;
    position: relative;
}
.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
    }

.timeline > li:after {
    clear: both;
    }

.timeline > li > .timeline-panel {
    width: 46%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    margin-bottom: 40px;
}
.timeline > li.timeline-inverted > .timeline-panel {
        float: right;
    }

    .timeline > li.timeline-inverted > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    .timeline > li.timeline-inverted > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
.timeline > li.timeline-inverted > .timeline-picture-body: before {
        position: absolute;
        top: 26px;
        right: -15px;
        display: inline-block;
        border-top: 15px solid transparent;
        border-left: 15px solid #ccc;
        border-right: 0 solid #ccc;
        border-bottom: 15px solid transparent;
        content: " ";
    }
    .timeline > li.timeline-inverted > .timeline-picture-body: after {
        position: absolute;
        top: 27px;
        right: -14px;
        display: inline-block;
        border-top: 14px solid transparent;
        border-left: 14px solid #fff;
        border-right: 0 solid #fff;
        border-bottom: 14px solid transparent;
        content: " ";
    }
    .timeline > li.timeline-inverted > .timeline-picture-body {
        float: left;
    }
.timeline-title {
 margin-top: 0;
 color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
 margin-bottom: 0;
}

.timeline-body > p + p {
 margin-top: 5px;
}
.timeline-images-right {
 display: inline-block;
 vertical-align: top;
 width: 40%;
 float: left;
 padding: 0 10px;
}
.timeline-images-left {
 display: inline-block;
 vertical-align: top;
 width: 40%;
 float: right;
 padding: 0 10px;
}
.padding-bottom {
 padding-bottom: 10px;
}
.align {
 display: block;
}

/*fonts*/
h1 {
 text-align: center;
 font-size: 3em;
 color: black;
 padding-top: 220px;
 margin-top: 0;
}
.box h1 {
 text-align: center;
 font-size: 3em;
 color: black;
 padding-top: 30px;
 margin-top: 0;
}
h2{
 text-align: center;
 font-size: 2.3em;
 color: black;
}
p {
 text-align: justify;
 font-size: 1.3em;
}

1 个答案:

答案 0 :(得分:1)

由于正在使用bootstrap,在代码中的第二张图片之后插入<div class="clearfix visible-xs-block visible-sm-block visible-md-block visible-lg-block"></div>修复了问题。

            <div class="timeline-picture-body">
                <img class="timeline-images-left padding-bottom" src="http://placehold.it/250x250">
                <img class="timeline-images-left padding-bottom" src="http://placehold.it/250x250">
                <div class="clearfix visible-xs-block visible-sm-block visible-md-block visible-lg-block"></div>
                <img class="timeline-images-left align" src="http://placehold.it/250x250">
                <img class="timeline-images-left align" src="http://placehold.it/250x250">
            </div>