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/ Link to comment https://forums.phpfreaks.com/topic/267166-breaks-jquery-accordion/ 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/ Link to comment https://forums.phpfreaks.com/topic/267166-breaks-jquery-accordion/#findComment-1370016 Share on other sites More sharing options...
defroster Posted August 17, 2012 Author Share Posted August 17, 2012 Thanks for help! Link to comment https://forums.phpfreaks.com/topic/267166-breaks-jquery-accordion/#findComment-1370082 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.