I'm trying to use max-inline-size (the new logical properties) inside media query, but it doesn't seem to work.
The idea that in English it will be max-width:1000px; and in Japanese it will max-height:1000px
/*Not Working*/
@media (max-inline-size:1000px){
.main-content{
background:Red;
grid-template-columns:auto;
}
}