defroster Posted August 16, 2012 Share Posted August 16, 2012 I have a jQuery accordion that breaks when I need to place a div-tag in one of the sliding open areas.. How do I get around this? I need to put a div-tag since I cannot make a nice box out of a span-tag. Anyone knows a way around this?? Please see my demo here to see where it breaks http://jsfiddle.net/zRqYM/ Quote Link to comment Share on other sites More sharing options...
Adam Posted August 16, 2012 Share Posted August 16, 2012 This isn't really a JS issue it's just CSS, so I've moved it to the CSS forum. Take a look into the display property. In your case you could just add display: inline-block to a <span>, and I think it should do what you're after. Just note that to reliably use inline-block on older versions of IE you must apply it to elements that are naturally inline displayed (spans, strong, em, etc.) http://jsfiddle.net/GZcWm/ Quote Link to comment Share on other sites More sharing options...
defroster Posted August 17, 2012 Author Share Posted August 17, 2012 Thanks for help! 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.