01-16-2012, 02:32 PM
There is a new CSS attribute(s), Modal Box...
This feature is a new one and belongs to CSS3 , to make it work in different browsers you would need to have some work arounds, but it would look like this;
http://www.w3schools.com/cssref/css3_pr_box-align.asp
This feature is a new one and belongs to CSS3 , to make it work in different browsers you would need to have some work arounds, but it would look like this;
Code:
.horizontal
{
position:relative; display:box;
box-orient:horizontal; box-sizing:border-box;
}
/*
the abouve would be standard and wouldn't work for example in Firefox
to make it work in firefox you would need to append a browser depended paramter or keyword like for example
Firefox > Opera > Chrome > IE
display:-moz-box; display:-o-box; display:-webkit-box; display:-ms-box;
And other attributes and parameters would look like
-moz-box-orient:vertical; -o-box-orient:horizontal; etc....
*/