PDA

View Full Version : CSS in VB math


downloadsuk
08-06-2010, 09:52 AM
Hi guys, interesting question here for you:

would it be possible to use VB math to say

tell the CSS to take the page width of 100% for the div tag width, and then minus a certain amount?

Like
div
{
width: {vb:math 100% - 130}px;
}

?

Any help is appreciated

Lynne
08-06-2010, 02:12 PM
You cannot mix % and pixels (or any two different types). If you want to start with 100%, then you need to subtract x%. Or, you can start with xx px and substract 130 px.

downloadsuk
08-07-2010, 01:10 AM
Thanks Lynne. It was a vain hope. Didn't think it was possible...

I suppose I could do it post display in JS, but then I'm running a risk of the user having it turned off.