before and after image css code example
Example 1: html img pseudo class
Doesn't work. Only containing tags can have psuedo class children.
e.g. <div>, <p>, <span>, etc...
Example 2: how to css after elements for background overlays
.banner::after { content: ""; // ::before and ::after both require content position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(120deg, #eaee44, #33d0ff); opacity: .7;}