css 左右布局
1、左右布局
根据右侧内容调整左侧大小
.box{
display: grid; grid-template-columns: 375px 1fr;
}
.img{height: 240px;background-image: url('你的图片链接');background-size: cover;background-position: top;background-repeat: no-repeat;
}
.content{
text-align: justify;
}