Negative Values in CSS
Negative Values in CSS
Out of context: Reply #13
- Started
- Last post
- 17 Responses
- 3030
You can get final effect similar to negative margin if you use negative values for positioning:
.parent {
position: relative;
}.negative {
top: -10px;
left: -10px;
/* other styling goes here */
}<div class="parent">
<div class="negative"></div>
</div>