How to properly hide the div of an inline collapsible button?
To solve the problem we have to use the adjacent selector + and shortcodes. With the adjacent selector we target any .con after a p, any p after a .con. and any br after a div. p + .con { margin-top: -1em; } .con + p { margin-top: 0; } div + br { display: … Read more