Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
没有媒体查询,我有这样的事情:
.sample_div { left: 200px; }
当我有一个 780 像素的媒体查询时,我想做以下事情:
.sample_div { right: 300px; }
问题是左侧显示在 780px 媒体查询中。我怎样才能在那个中只显示右边而不显示左边?
查看W3Schools 上的左侧规范
这应该适合你:
.sample_div { left: auto; right: 300px; }