Jul 29

Tagged in: , Comments:Add

Simple Double Quotes

This CSS tutorial will show you how to display two double-quote images using one blockquote tag. The trick here is apply one background image to blockquote, and then apply another background to the first-letter (pseudo-element) of blockquote.

Preview double quotes

Download HTML file

1. HTML source code

Start with a blockquote and some text.

<blockquote>Hello, I am a double quote...</blockquote>

2. Specify blockquote

Specify blockquote element as follow:

blockquote {
  font: 1.2em/1.6em Georgia, "Times New Roman", Times, serif;
  width: 400px;
  background: url(images/close-quote.gif) no-repeat right bottom;
  padding-left: 18px;
  text-indent: -18px;
}

The CSS code above will display the close-quote.gif graphic background at bottom right corner. The padding-left and text-indent will create a hanging indent of -18px. It will look like this:

step 2

3. First letter of blockquote

Now add 18px left padding to the first-letter of blockquote. This will make the text align together. Then display the open-quote.gif at top left corner. Note I made the first letter in different font styles just to look nice.

blockquote:first-letter {
  background: url(images/open-quote.gif) no-repeat left top;
  padding-left: 18px;
  font: italic 1.4em Georgia, "Times New Roman", Times, serif;
}

step 3

Pullquote style

If you want to make a pullquote, simply specify the blockquote float left or right. View my pullquote sample.

Delicious Stumbleupon Digg

30 Artistic Flash Sites Illustrating the Flower Pattern

Comments

Pages: 10 9 8 7 6 5 4 3 2 1 » Show All

There are 99 comments (+Add)

  • 99 Cöp Konteyner http://www.dehacopkonteyner.com

    I always follow your site thank you

  • 98 Buz http://www.isbet.com.tr/

    admin thanks for this website

  • 97 Haliyikama http://www.billurhaliyikama.com/

    Share admin thans a lot for sharing a very successful.

  • 96 hurdaci http://www.gunduzmetal.com

    I think type of site that is useful

  • 95 eka http://ekas0615.student.ipb.ac.id

    thank you so much for sharing :p

  • 94 Progs4u http://www.progs4u.net

    Thank you so much ..
    You are very cool

  • 93 Chris

    Ummm, if this works - then why is your example an image dump!

  • 92 Ramona http://www.hapkemedia.com

    The same problem like Hugo has: I cannot style the first:letter. There is no other blockquote definition in my styles.

  • 91 Catalin C. http://softpedia.com

    It works fine.
    Thank you.
    Included it in my frontend framework.

  • 90 Michelle

    What do you mean by getting of the paragraph tags within the blockquotes? Could you give examples? Thanks! (:

Pages: 10 9 8 7 6 5 4 3 2 1 » Show All

Post Your Comments

(required)

(required)

Comment Guidelines

  • Please keep comments related to topic. And be nice, don't spam!
  • Basic HTML tags are allowed:
    <a href> <abbr> <acronym> <blockquote> <code> <em> <strike> <strong>
  • Note: un-related or spam comments will be deleted.

Live Comment Preview

Back to top