将 ClearFix Hack 应用于图窗标签后,FigCaption 被排除在图之外

after applying clearfix hack to figure tag, the figcaption gets excluded and goes out of the figure

提问人:Amaan Shaikh 提问时间:7/22/2020 更新时间:7/22/2020 访问量:30

问:

@media(min-width: 1071) {
        .align-left {
            float: left;
            width: 100%;
            margin: auto;
            max-height: 350 ;
            max-width: 450 ;
        }

        .align-center {
            float: inherit;
            width: 100%;
            margin: auto;
            max-height: 350 ;
            max-width: 450 ;
        }

        .align-right {
            float: right;
            width: 100%;
            margin: auto;
            max-height: 350 ;
            max-width: 450 ;
        }

        .column::after {
            content: "";
            clear: both;
            display: table;
            overflow: auto;
        }
        
        #blog {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between;
        }

} 上传图片越来越困难,但请尝试理解我的问题<== FigCaption 位于带有 img 的 Figure 标签内,但只有 img 以 Figure 的 bg 颜色显示 figcaption 不包含在应用于 Figure 的 bg 颜色中 ==>

HTML CSS Web 与 Web-Site-Project clearfix

评论


答: 暂无答案