Heim > Fragen und Antworten > Hauptteil
P粉8484421852023-09-06 00:20:41
重要的是输出,而不是通过 API 调用图像,我们可以使用 CSS 来处理结果。
电影标题将图像压低,因为它们在同一个容器中,所以我们必须给予它们高度。
图像的比例不同,因此您可以使用object-fit: cover
以最小图像高度的最大尺寸裁剪图像。
在移动设备上:您需要将overflow
设置为visible
,并从.container-中取出
也是如此(否则会有多个额外的空格),并且仅添加到父级。padding
child
像这样的事情,会做到:
.container-child p { height: 50px; text-align: center; display: block; } /*from here the responsive code*/ @media (max-width:1624px){ .container-child img { object-fit: cover; max-width: 500px; max-height: 709px; /*the smallest image*/ width: 100%; height: 100%; } } @media (max-width: 768px) { .container-child { padding-top: 0em; display: inline-block; text-align: center; } #test { margin-top: 130px; display: inline-block; text-align: center } html, body { overflow: visible; background: #000; } }