需要让我的文字适合div图像

时间:2014-03-12 14:50:53

标签: html css

我需要让我的文字适合我的div page

<div id="othermain">
Is your big day approaching? Need a Wedding Dress, Bridesmaid Dress or any Bridal Wear altering or remodelling? You are definitely looking in the right place, this is our speciality! </p><br><br> At Bobbin Alterations, 
we want to make sure that your dress is the perfect fit and style for you, for your special occasion. whether it be a Wedding, Prom, a dinner or any other special occasion. We understand that planning you're
big celebration can be very demanding at times, but we're here to take your worries away and make it as stress free as possible.<br><br> Looking good and comfortability is crucial, and with our help, we can tailor and alter a dress the highlights your features and make you feel wonderful.
    <div id="testimonial"></div>
    <br><br>Our standard dress alterations include:<br>
    <br> - Shortening
    <br> - Seams
    <br> - Hemlines
    <br> - Beading
    <br> - Shoulder Adjustments
    <br> - Straps
    <br> - Veils
    <br> - Zips<br>
    <br>We've had the privilege of helping with endless amounts of weddings and proms and take extreme pride in the happiness that is made through our work.<br>
    <br><br>Use the Order form to place an order, or call us on 01325 59976 with an Enquiry, to guarantee a First Class service and a truly memorable occasion.
</div>

上面是我的bridal.html代码,下面是我所讨论的两个元素的css代码:

#testimonial{background: url(../img/testimonial.fw.png); width: 700px; height: 300px; margin-left:320px;  display: block; background-repeat:no-repeat;}

#ordermain {width:1024px; height: 700px}

非常感谢所有帮助。我尝试了很多方法。感谢

1 个答案:

答案 0 :(得分:1)

删除左边距并使div向右浮动。

#testimonial{
background: url(../img/testimonial.fw.png);
width: 700px;
height: 300px;
display: block;
background-repeat: no-repeat;
float: right;
}