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.
在进行响应式设计时,我通常需要在水平方向上设置百分比边距,但在垂直方向上,我通常不想要百分比,而是固定像素。
有什么理由不应该像这样在边距和填充中混合单位:
margin: 10px 10%;
浏览器性能?跨浏览器渲染问题?
只要您保持垂直是基于像素的,水平是基于百分比的,就应该没问题。只是不要将两者混合(至少不要在一个元素中),否则你会得到全面的不良影响。