This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hi, I am using the free version and have the following scss class: .test { box-sizing: $type; } I expect this to output the following: .test { box-sizing: border-box; -moz-box-sizing: border-box; webkit-box-sizing: border-box; } but I only get the this: .test { box-sizing: border-box; } Is this something I have not configured, a limitation of the free version, a bug or misunderstanding on my part. Please can you help? |
|
|
I think you may be looking for the box-sizing mixin (as opposed to just the CSS property) as per http://compass-style.org/reference/compass/css3/boxsizing/ e.g.
|
|
|
Ah sorry that's what I did have and I still only get the single output. Do I need to import anything? |
|
|
I have found the problem. I am using Foundation and it has overridden the mixin. I have contacted them for a solution. |
|