web site hit counter

Blockquote

Here's what you will learn with this css tutorial.

  • Blockquote Template
  • Using it

    Blockquote Template

    You may see different blockquotes everywhere you visit from dashed borders to different coloured ones, well sorry but this is just a plain one like the one below.

    This is a blockquote.
    • You can use them for listing rules and more.
    • Their usually used with bullets.

    Using it

    Here's the css needed for the blockquote, please be creative and don't copy mine exactly.

    .memo { text-align: justify; font-size: 7pt; font-family: Verdana, Arial, Helvetica, sans-serif; color: #C0C0C0; border-bottom: 0px dashed #88C2F2; border-right: 0px dashed #88C2F2; border-left: 6px solid #E3A6DD; border-top: 0px dashed #88C2F2; padding: 5px; line-height: 12px; background-color: #404040; }

    Remember that this is called memo not blockquote, that is how many people get it wrong. So make sure when you want to use a blockquote you use this code in your BODY.

    THE END