css Calc() problem

Re: css Calc() problem

by Rebecca Trynes -
Number of replies: 3

Could it be as simple as the fact that you have a space next to width?

width : calc(100% + 345px);  

As opposed to:

width: calc(100% + 345px);

?????


In reply to Rebecca Trynes

Re: css Calc() problem

by Rune Jensen -

Hi there,

I know I'm reviving a very old thread, but I've also run into this issue. Changing the syntax to what you suggest doesn't work either. It seems Moodle simply strips out the calc function.

Has anyone else found a work-around for this problem?

In reply to Rune Jensen

Re: css Calc() problem

by David Scotson -

There's some workarounds listed in the bug tracker commemts for MDL-61879 and it seems the issue is now fixed in the CSS parser library that Moodle uses, so upgrading that is probably a solution if you have that kind of server access.