我有一小段代码(它的代码片段)。问题是,即使我使用媒体查询,图像也不适合屏幕。任何人都可以告诉我如何解决这个问题,以适应屏幕?我使用的图像比屏幕大,所以它在屏幕上显示,迫使人们水平滚动,它不应该 - 它应该自动适合屏幕。
这是我的代码:
.portfolio img {
max-width: 100%;
width: 100%;
height: auto !important;
}
@media only screen and (min-width: 1025px)
{
#myBackground
{
min-height: 1000px;
}
#produkter
{
min-height: 1000px;
}
.portfolio img {
max-width: 440px;
max-height: 440px;
}
}
@media only screen and (max-width: 1024px)
{
#myBackground
{
min-height: 800px;
}
#produkter
{
min-height: 800px;
}
.portfolio img {
max-width: 300px;
max-height: 300px;
}
}
@media only screen and (max-width: 640px)
{
#myBackground
{
min-height: 600px;
}
#produkter
{
min-height: 600px;
}
.portfolio img {
max-width: 240px;
max-height: 240px;
}
}
@media only screen and (max-width: 368px)
{
#myBackground
{
min-height: 500px;
}
#produkter
{
min-height: 500px;
}
.portfolio img {
max-width: 100px;
max-height: 100px;
}
}

<head>
<meta name="viewport" content="width=device-width">
</head>
<body>
<img class="portfolio" src="images/bock1.png"/>
</body>
&#13;
答案 0 :(得分:1)
你的问题是投资组合类在图像上,在代码中你有.portfolio img这意味着图像在div中有类别组合,试试这个:
<div class="portfolio">
<img class="portfolio_img" src="https://pixabay.com/static/uploads/photo/2015/10/01/21/39/background-image-967820_960_720.jpg"/>
</div>
只需从图像中删除类组合并在具有类组合的div中包装图像,其他解决方案就是放入您的CSS
body .portfolio
而不是
.portfolio img
答案 1 :(得分:0)
您应该重写CSS,因为以下内容不会定位您的图片:
.portfolio img {}
浏览器将尝试使用类portfolio
您应该按如下方式重写CSS:
img.portfolio {}
以上内容将定位您的图片,目前该图片的类别为portfolio
。
或者将图像包装在具有一类投资组合的元素中:
<div class="portfolio">
<img src="">
</div>
在这种情况下,您现有的CSS将定位您的图片。