admin管理员组

文章数量:1428105

I'm trying to prevent container collapse using

section.main::after {
    clear: both;
    content: "";
    display: table;
}

When I preview my page, the container has not opened up. Inspection shows the code being changed to

section.main::after {
    clear: both;
    content: "
    display: table;
}

I've tried changing the "" to none, but that doesn't work either. Is there a way to get around this?

本文标签: cssWordPress changing contentquotquot to content ampquot