adikahorvath
3/22/2015 - 3:15 PM

change content with css & data attribute

change content with css & data attribute

@media screen and (orientation: portrait) {
  div {		
  	span {
  		display: none;
  	}
  			
  	&:after {
  		content: attr(data-day);
  	}
  }	
}	
<div data-day="M">
  <span>Monday</span>
</div>