Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other New CSS Learner Reply To: New CSS Learner

#157405
Merri
Participant
<h1 id="learn">This is how you learn</h1>

.

#learn:before {
  position: absolute;
  content: 'I want to learn';
  visibility: hidden;
}

#learn:after {
  display: block;
  position: relative;
  content: 'I have learned so much!';
  visibility: visible;
}

Wow.