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; } }