Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Selector for the margin-top and margin-bottom of an element Reply To: Selector for the margin-top and margin-bottom of an element

#245310
JamiePatt
Participant

Why not just something like:

.element:before,  .element:after{
content: ' ';
height: 10px;
}
.element:before {cursor:n-resize;}
.element:after {cursor:s-resize;}
.element {cursor:pointer;}