我有一小段代码(其中的一个片段)。问题是,即使我使用媒体查询,图像也不适合屏幕。谁能告诉我如何解决这个问题,以适应屏幕?我使用的图像比屏幕大,所以它会在屏幕上移动,迫使人们水平滚动,这是不应该的——它应该自动适应屏幕。
这是我的代码:
.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>