Вы должны использовать min-width, но вы не можете настроить таргетинг только на 1024px только из-за планшетов с разными размерами экрана.
@media only screen and (min-width: 1024px) {
div#about img {
width: 100% !important;
height: auto !important;
display: block !important;
margin: auto !important;
margin-bottom: 10px !important;
}
}
@media only screen and (min-width: 1024px) {
div#about-section img {
margin-bottom: 50px !important;
width: 100% !important;
}
}
Рекомендуемые размеры экрана и медиа-запросы для лучшего взаимодействия.
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}