Widoczność,ułożenie elementu before.

0

Chciałabym aby ten cudzysłów był za tekstem. Nadaję elementowi klasy quote z-index 10 i elementowi before 0 ale ni uzyskuje oczekiwanego efektu.

<blockquote class="quote">
				I know quite certainly that I myself have no special talent; curiosity, <mark class="word">obsession</mark>
				<dl class="tooltip">
					<dt class="tooltip-header"> [əbˈseʃ(ə)n]</dt>
					<dd class="definition"><strong>
							Obsession</strong>, a persistent disturbing preoccupation with an often unreasonable idea or feeling.</dd>

				</dl>
				and dogged endurance, combined with self-criticism have brought me to my ideas.
			</blockquote>
.quote{
	position:relative;
	margin:.1em;
	z-index:10;
	margin-bottom:20px;
	font-size:1.2em;
	&::before{
		content:"„";
		position:absolute;
		font-size:7em;
		font-family:Arial;
		top:-90%;
		left:-20px;
		z-index:0;
		color:lighten($primary,10%);
		
	}
}

cudzyslow.png

1
.quote::before{
  z-index:-1;
  ...
}

1 użytkowników online, w tym zalogowanych: 0, gości: 1