I have a container div that I need to set the horizontal positioning to absolute to make it full screen width (just like a fluid container). Then I need to set the vertical positioning to relative so that it stays where the content is.. Is this possible in LESS? There's a lot going on here in the project with gutters, so it's nearly impossible to work around this unless I can do it in this one class. Basically, I'm tied to this answer.
Note: I've seen this question answered for CSS, but not for LESS.
Basically I need to do this, but have the vertical position has to stay relative. (example in css):
.content-section-c-container {
position:absolute;
background-color: #3D8DC7;
left: 0;
right: 0;
}