Search
 
SCRIPT & CODE EXAMPLE
 

CSS

add quotes in quote css

.tagline::before {
  content: "275D";
}

.tagline::after {
  content: "275E";
}

.tagline::after,
.tagline::before {
  color: #000;
  font-size: 28px;
  margin: 0 4px;
}
Comment

adding quotes css

blockquote {
    position: relative;
    /* background: #ddd; */
}

blockquote:before {
  position: absolute;
  content: open-quote;
  font-size: 4em;
  margin-left: -0.6em;
  margin-top: -0.4em;
}
blockquote:after {
  position: absolute;
  content: close-quote;
  font-size: 4em;
  bottom: 0;
  right: 0;
  margin-right: -0.6em;
  margin-bottom: -0.8em;
}
blockquote p {
  display: inline;
}
Comment

PREVIOUS NEXT
Code Example
Css :: css transitions 
Css :: css counter 
Css :: button hover 
Css :: css push div down 
Css :: css grid first child 
Css :: css box 
Css :: round one side of div css 
Css :: :global css 
Css :: css make border rotate around element 
Css :: select2 make previously selected options non deletable 
Css :: letter spacing text 
Css :: circle as a pseudo element 
Css :: how to change a checkbox to be selected 
Css :: patterns with css 
Css :: how to allign li in row 
Css :: move sidebar to top on mobile 
Css :: tailwind simple product card 
Css :: html css text between Horizontal line 
Css :: Deployer custom Options 
Css :: laravel 7 css not working 
Css :: text overlay animation css 
Css :: === git ignore 
Css :: have button beside form input 
Css :: repeat css 
Css :: use .map to count length of each element in an array 
Css :: blurred background 
Css :: hex values 
Css :: id selector css 
Css :: css pseudo elements 
Css :: css broken image has top margin? 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =