Search
 
SCRIPT & CODE EXAMPLE
 

CSS

blockquote quotation marks css

blockquote {
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    width: 500px;
    margin: 0.25em 0;
    padding: 0.35em 40px;
    line-height: 1.45;
    position: relative;
    color: #383838;
}

blockquote:before {
    display: block;
    padding-left: 10px;
    content: "201C";
    font-size: 80px;
    position: absolute;
    left: -20px;
    top: -20px;
    color: #7a7a7a;
}

blockquote cite {
    color: #999999;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

blockquote cite:before {
    content: "2014 2009";
}
Comment

blockquote quotation marks css

blockquote {
    font-family: Georgia, serif;
    position: relative;
    margin: 0.5em;
    padding: 0.5em 2em 0.5em 3em;
}
/* Thanks: http://callmenick.com/post/styling-blockquotes-with-css-pseudo-classes */
blockquote:before {
    font-family: Georgia, serif;
    position: absolute;
    font-size: 6em;
    line-height: 1;
    top: 0;
    left: 0;
    content: "201C";
}
blockquote:after {
    font-family: Georgia, serif;
    position: absolute;
   /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
    float:right;
    font-size:6em;
    line-height: 1;
    right:0;
    bottom:-0.5em;
    content: "201D";
}
blockquote footer {
    padding: 0 2em 0 0;
    text-align:right;
}
blockquote cite:before {
    content: "2013";
}
Comment

PREVIOUS NEXT
Code Example
Css :: @font-face or font link 
Css :: efectos imagenes css 
Css :: css icons free 
Css :: linear gradient farthest-corner code css 
Css :: vendor css 
Css :: opposite of :not css 
Css :: CSS Border - Shorthand Property 
Css :: css after before 
Css :: css display contents 
Css :: animation in css 
Css :: include sass in html 
Css :: select custom css 
Css :: @page css 
Css :: how to make jest parse the imported css modules in create react app 
Css :: grandezza caratteri css 
Css :: text-overflow ellipsis css 
Css :: ausgewählter text farbe ändern css 
Css :: css slide up animation 
Css :: -webkit-animation css 
Css :: css before cant change the size 
Css :: flex grow css 
Css :: ul change position when restore down 
Css :: scratch card css 
Css :: showing danger message in red in terminal bash 
Css :: media screen use another css file 
Css :: Table Print Cut off right side 
Css :: how To target a particular td in css 
Css :: vue center components in body 
Css :: font sizze xss 
Css :: bolock rotating the screen on your website with css 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =