Forum Moderators: not2easy
If i display:inline-block; to the anchor is works...
but i want to reset the display to "block" after the haslayout is set to true.
so i do the following
div.advert a{
display:inline-block;
display:block;
}
but it does not set the haslayout to true.
if i do this
div.advert a{
display:inline-block;
}
i thought once the haslayout is set to true it can not be set to false. so the above solution should work?.... but it doesn't..
Has anyone else had this problem before?
Thanks
Vik
so:
div.advert a{
display:inline-block;
display:block;
} needs written like:
div.advert a{
display:inline-block;
}div.advert a{
display:block;
}
Oh and afaik, inline-block is the only hasLayout property that works to "reset"
[edited by: SuzyUK at 8:51 pm (utc) on Feb. 23, 2008]