After Before Css Sample Code Example


Example 1: css before after

The ::before and ::after pseudo-elements in CSS allows you to insert content onto a page without it needing to be in the HTML. While the end result is not actually in the DOM, it appears on the page as if it is, and would essentially be like this:  div::before {   content: "before"; } div::after {   content: "after"; } <div>   before   <!-- Rest of stuff inside the div -->   after </div>  The only reasons to use one over the other are:  You want the generated content to come before the element content, positionally. The ::after content is also “after” in source-order, so it will position on top of ::before if stacked on top of each other naturally.

Example 2: how use befor after for image

/* for child  */  .custom_img:after {     content: "";     background-color: #2359cf;     height: 400px;     width: 70%;     top: -15px;     right: -6px;     position: absolute;     z-index: 999; }

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools