⚡Extra 25% Coupon Code "25OFF"Over 166S$



Microsoft® Office Home 2024 (Digital Download)
Original price was: $229.00.$57.25Current price is: $57.25.
Microsoft® Office Home 2024 (Digital Download)
/* CSS for mobile view (screen width up to 767px) */
@media only screen and (max-width: 767px) {
.desktop-image {
display: none; /* Hide desktop images */
}
.mobile-image {
display: block; /* Show mobile images */
width: 100%; /* Ensure mobile images fit the container */
}
.mobile-image img {
width: 100%; /* Make each mobile image responsive */
height: auto; /* Maintain aspect ratio */
max-height: none; /* Prevent height restrictions */
object-fit: contain; /* Ensure the image fits within the container */
}
}
/* CSS for desktop view (screen width above 767px) */
@media only screen and (min-width: 768px) {
.mobile-image {
display: none; /* Hide mobile images */
}
.desktop-image {
display: block; /* Show desktop images */
max-width: 100%; /* Maintain aspect ratio */
height: auto; /* Adjust height automatically to keep aspect ratio */
}
}




