网站相同性™
以下是显而易见的事实(也就是我本人)给您带来的特别观察
…带有特殊消息的栏
LOGO 平台↓ 解决方案↓ 定价
大胆的声明
号召性用语
小型插图网格
大型粗体页脚
©2018— Chris Coyier (@chriscoyier) 2018 年 1 月 30 日
使用 SVG 的纵横比
我很喜欢 Noam Rosenthal 的这个小技巧
<style>
.aspectRatioSizer {
display: grid;
}
.aspectRatioSizer > * {
grid-area: 1 / 1 / 2 / 2;
}
</style>
<div class="aspectRatioSizer">
<svg viewBox="0 0 7 2"></svg>
<div>
Content goes here
…