Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Last active August 29, 2015 14:17
Show Gist options
  • Save adikahorvath/893aa43755e17e8dcfcf to your computer and use it in GitHub Desktop.
Save adikahorvath/893aa43755e17e8dcfcf to your computer and use it in GitHub Desktop.
change content with css & data attribute
<div data-day="M">
<span>Monday</span>
</div>
@media screen and (orientation: portrait) {
div {
span {
display: none;
}
&:after {
content: attr(data-day);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment