There is no difference between:
.quote::before {
content: '" ';
}
.quote::after {
content: ' "';
}
and
.quote::before {
content: '"';
}
.quote::after {
content: '"';
}
spaces not working
There is no difference between:
.quote::before {
content: '" ';
}
.quote::after {
content: ' "';
}
.quote::before {
content: '"';
}
.quote::after {
content: '"';
}
spaces not working
You’re gonna have to provide more complete context for us to fully understand what you mean and what help you need.
Create a .quote::before
selector and set the content
property to "
with a space following it.
Also, create a .quote::after
selector and set the content
property to "
with a space preceding it.
I just don’t understand the need of “spaces”