the title pretty much explains it all, I have this calculation in LESS, it is the left inset of my sideBar.
sidebar: 300px
content: 960px
// half of the empty space
left: calc(~'(100% - 1260px)' / 2)
Then to calculate the inset of my content div, i need to repeat this and add the width of my sidebar.
I have tried
// half of the empty space
left: calc(~'(100% - 1260px)' / 2 +300px)
// half of the empty space
left: calc((~'(100% - 1260px)' / 2)+300px)
I've also tried to put the original calculatin into a variable and add 300px to that, no luck.
So is this even possible?