Jump to content

Wrapping text with a left and right image


biggieuk

Recommended Posts

Hi all,

 

I have a little question about styling quotes on my website.

 

I want to display a left quote image, then the quote text in the middle and a right quote image on the end.

 

I currently have this like so:

 

#quotel{  background:url(../images/content/quote-left.gif) no-repeat; height:32px; width:42px; float:left; }
#quoter{  background:url(../images/content/quote-right.gif) no-repeat; height:32px; width:42px; float:right; }

 

The right qutoe image is displayed slightly offline though.

 

Is there a way i can make this into a single class so that i can insert into a <p> tag?

 

thanks very much!

Link to comment
Share on other sites

the 'shortest' way i can see doing it is with two block level elements:

<style type="text/css">
  .quoteWrapper {
    background: url(../images/content/quote-left.gif) no-repeat top left;
    padding: 10px 0 0 10px;
  }
  .quote {
    background: url(../images/content/quote-right.gif) no-repeat bottom right;
    padding: 0 10px 10px 0;
  }
</style>
<div class="quoteWrapper">
  <p class="quote">

  </p>
</div>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.