说说网页版图片支持九宫格显示

This commit is contained in:
SwimmingLiu 2024-09-16 20:19:53 +08:00
parent 169829fa1b
commit 79eaa7d407

View File

@ -61,7 +61,6 @@ def show_author_info():
def get_html_template():
# HTML模板
# HTML模板
html_template = """
<!DOCTYPE html>
@ -108,17 +107,20 @@ def get_html_template():
}}
.image {{
margin-top: 10px;
display: flex;
justify-content: space-around;
align-items: center; /* 使两张图片垂直对齐 */
padding: 20px;
display: grid;
grid-template-columns: repeat(3, 1fr); /* 将图片分成3列 */
grid-gap: 10px; /* 设置图片之间的间距 */
justify-items: center; /* 居中显示图片 */
}}
.image img {{
max-width: 33vw;
max-height: 33vh;
width: 100%; /* 图片宽度100%填充父容器 */
height: auto; /* 固定高度150px */
object-fit: cover; /* 保持比例裁剪图片 */
max-width: 33vw; /* 限制图片的最大宽度 */
max-height: 33vh; /* 限制图片的最大高度 */
border-radius: 10px;
cursor: pointer;
}}
}}
.comments {{
margin-top: 5px; /* 调整这里的值来减少间距 */
background-color: #444;