.article_left_bg {
background-image: url(images/article_bg_01.png);
background-repeat: no-repeat;
height: auto;
min-height: 400px;
margin-left: 20px;
}
.article_left2_bg {
background-image: url(images/article_bg_03.png);
background-repeat: no-repeat;
height: auto;
min-height: 320px;
margin-left: 12px;
margin-top: -30px;
}
.article_left3_bg {
background-image: url(images/article_bg_05.png);
background-repeat: no-repeat;
height: auto;
min-height: 400px;
margin-left: 8px;
margin-top: -15px;
}
.article_right_bg {
background-image: url(images/article_bg_02.png);
background-repeat: no-repeat;
height: auto;
min-height: 400px;
}
.article_right2_bg {
background-image: url(images/article_bg_04.png);
background-repeat: no-repeat;
height: auto;
min-height: 320px;
margin-top: -30px;
}
.article_right3_bg {
background-image: url(images/article_bg_06.png);
background-repeat: no-repeat;
height: auto;
min-height: 320px;
margin-top: -15px;
}
.article_title, .article_title1, .article_title2 {
width: 350px;
padding-bottom:15px;
margin-bottom:15px;
}
.article_title h2 {
margin:20px 0 5px 0;
color:#000;
font-size:25px;
font-weight:normal;
padding: 50px 0 0 58px;
}
.article_title1 h2 {
margin:20px 0 5px 0;
color:#000;
font-size:25px;
font-weight:normal;
padding: 90px 0 0 58px;
}
.article_title2 h2 {
margin:20px 0 5px 0;
color:#000;
font-size:25px;
font-weight:normal;
padding: 60px 0 0 68px;
}
.article_title h2 a, .article_title1 h2 a, .article_title2 h2 a{
color:#000}
.article_title .subtitle, .article_title1 .subtitle {
display:block;
font-size:15px;
font-weight:300;
color:#000;
padding: 0 0 0 58px;
}
.article_title2 .subtitle {
display:block;
font-size:15px;
font-weight:300;
color:#000;
padding: 0 0 0 68px;
}
.article_descr {
width: 290px;
color:#000;
font-size:12px;
line-height:1.2em;
font-family:Arial, Helvetica, sans-serif;
padding: 0 0 0 58px;
}
.article_item .link_more,
.article_item .link_more:hover {
display:inline-block;
line-height:25px;
background:url(images/arrow_right.png) 0 0 no-repeat;
padding-left:45px;
font-weight:400;
font-size:18px;
color:#000;}
我想要3行,每列2个,每个框都有不同的图像作为背景。但是当涉及到移动设备时,它就会被打破。 IMage仅显示半部分,文本从图像中显示为已损坏。
我会请求任何人都应该帮我制作一个响应的div背景图像。
由于
TeekeyBee
答案 0 :(得分:0)
background-size: cover;
会帮助你吗?
background-size CSS属性指定背景图像的大小。图像的大小可以完全约束,也可以仅部分限制,以保持其固有比率。
Here有关它的更多信息。