tibberous Posted August 18, 2012 Share Posted August 18, 2012 I need an empty div to show up at the height it will be once it has text, before it has text. Is there a way to force it to always display, without putting in ? Quote Link to comment Share on other sites More sharing options...
floridaflatlander Posted August 18, 2012 Share Posted August 18, 2012 Off hand I say add height or min height to the div or have font tags that are the same type font as you'll be using with a line height. Quote Link to comment Share on other sites More sharing options...
BuildMyWeb Posted August 18, 2012 Share Posted August 18, 2012 Off hand I say add height or min height to the div ... agrd Quote Link to comment Share on other sites More sharing options...
floridaflatlander Posted August 18, 2012 Share Posted August 18, 2012 agrd Argh, I think it's argh anyway back to business ... ... or have font tags that are the same type font as you'll be using with a line height. I guess that's all BuildMyWeb and I can add to the buffet. Quote Link to comment Share on other sites More sharing options...
Mahngiel Posted August 19, 2012 Share Posted August 19, 2012 For the record... the div will always exist in the DOM. However, a div with no attributes / properties / content will have a 0 height - much akin to a clear-fix div (people still use those?). Like the two dudes above said, it can be easily fixered. Quote Link to comment Share on other sites More sharing options...
jardrake Posted August 19, 2012 Share Posted August 19, 2012 First, the DOM will show the div. But, I'm guessing you have only given it a height, which means the div may be 1 million pixels high, but you will never see it if its width is a 0. Trying giving it a width or a min-width. Quote Link to comment Share on other sites More sharing options...
Mahngiel Posted August 19, 2012 Share Posted August 19, 2012 First, the DOM will show the div. But, I'm guessing you have only given it a height, which means the div may be 1 million pixels high, but you will never see it if its width is a 0. Trying giving it a width or a min-width. What are you talking about? Divs are native block elements, which means you NEVER have to set width unless you're overriding it or are using it positioned. Furthermore, your post further has no relevance to the OP. Quote Link to comment Share on other sites More sharing options...
BuildMyWeb Posted August 20, 2012 Share Posted August 20, 2012 @ floridaflatlander: my apologies for not being clearer (or maybe you are just being clever ). anywho, to be abundantly clear to other readers, i meant "Agreed." as in i agree with floridaflatlander's statement. without more information, i would say giving a height, or more precisely, a min-height would be the best start. Quote Link to comment Share on other sites More sharing options...
hakimserwa Posted August 31, 2012 Share Posted August 31, 2012 why would you want to do that anyway Quote Link to comment Share on other sites More sharing options...
matthewtbaker Posted October 5, 2012 Share Posted October 5, 2012 Sure is. For your div set the height, width and position. You can have either relative or absolute, if you set absolute you can then set the top and left positions using position: absolute; top: 50px; left: 100px; Matt Quote Link to comment Share on other sites More sharing options...
Mahngiel Posted October 5, 2012 Share Posted October 5, 2012 ... and position. You can have either relative or absolute... There is also fixed and static Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.