list with not selector

PHOTO EMBED

Mon Apr 07 2025 14:18:03 GMT+0000 (Coordinated Universal Time)

Saved by @Sebhart #css #selector #list

/* list with not selector */

.post > *:not( img ):not( video ) {
    margin-left: auto;
    margin-right: auto;
    max-width: 50rem;
    padding-left: 5%;
    padding-right: 5%;
}
content_copyCOPY

Rather than list all content items that need a max width, margin, and padding you instead just identify the items that don't need those rules applied.