Hello all,
Is there a way in CSS to state NOWRAP on DIV TAGs, until a CLEAR:BOTH is
found?
This would be something similar to <td NOWRAP>.</td>.
I'm finding that the content of my ID's Ladder, and Content cause Content to
wrap, and I want them to stay inline.
Please advise.
Below is a snippet of the code that I'm working with:
Mike,
<html>
<style type="text/css">
@import url("../shared/styles.css");
.VSpacer { clear:both; width:5px; height:5px; }
.HSpacer { float:left; width:5px; height:5px;}
.Security_Menus { width:100%; clear:both; border: 1px solid
black; }
.Security_Ladder { width:20%; float:left; border: 1px solid
black; }
.Security_Content {min-width:75%; float:left; border: 1px
solid black; }
</style>
<script src="jquery_lite.js"></script>
<script src="ajax.js"></script>
<body>
<div id="Security" class="">
<div id="Menus" class="Security_Menus">Security</div>
<div id="VSpacer" class="VSpacer"></div>
<div id="Ladder" class="Security_Ladder">Ladder</div>
<div id="HSpacer" class="HSpacer"></div>
<div id="Content" class="Security_Content">Content</div>
</div>
</body>
<script>
var divLadder = $("Ladder");
ajLadder = new AJAX();
ajLadder.Get ("Ladder.php", divLadder);
var divContent = $("Content");
ajContent = new AJAX();
ajContent.Get ("Content.php", divContent);
</script>
<html>
<http://www.enetarch.net/> 2008-06-16 biz card
--
--
You received this because you are subscribed to the "Design the Web with CSS"
at Google groups.
To post: [email protected]
To unsubscribe: [email protected]<<image002.jpg>>
