sass - SCSS divide operator not compiling -


i using sublime text 2 , livereload compile .scss file. tried codekit same problem.

using + , - work no problem, * , / don't compile.

font-size: 30px / 2px; doesn't compile font-size: 15px;

but

font-size: 30px + 2px; compile font-size: 32px;

any ideas? code hinting doesn't seem working multiply , divide operators, package conflict? seems unlikely.

put in parenthesis scss understands want arithmetic operation. also, not want divide px px number result in unitless number.

this looking for:

div {   font-size: (30px / 2) } 

Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -