Advice Needed
i trying create testimonials page. want have each testimonial in text bubble , want bubbles alternate left side of page right. advice on best way this? should create separate css rule each one? have text on top opposed included in image.
it depend on how coded "bubbles", assuming can represent bubbles following, works -
<style>
#bubbles { width:400px; overflow:hidden; }
#bubbles p { width:200px; margin:0; float:left; }
/*#bubbles p.right { float:left }*/
</style>
</head>
<body>
<div id="bubbles">
<p>this bubble 1</p>
<p class="right">this bubble 2</p>
<p>this bubble 3</p>
<p class="right">this bubble 4</p>
<p>this bubble 5</p>
<p class="right">this bubble 6</p>
</div>
just size container accordingly.
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment