HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-03-09
1 <p>The most interesting application of shadows is in drawing. Craftsmen can create complex images using shadows. We will also create a fairly simply, but recognizable image in pure CSS.</p>
1 <p>The most interesting application of shadows is in drawing. Craftsmen can create complex images using shadows. We will also create a fairly simply, but recognizable image in pure CSS.</p>
2 <p>The source code already contains a placeholder - a rounded element that is 100 by 100 pixels in size without borders and background. The shadows are the same size and shape as their parent element, so the shadows we add will be circular.</p>
2 <p>The source code already contains a placeholder - a rounded element that is 100 by 100 pixels in size without borders and background. The shadows are the same size and shape as their parent element, so the shadows we add will be circular.</p>
3 <p>Before starting, here are a couple of notes:</p>
3 <p>Before starting, here are a couple of notes:</p>
4 <ol><li>If you do not specify a shadow parameter, then it will be equal to 0 by default.</li>
4 <ol><li>If you do not specify a shadow parameter, then it will be equal to 0 by default.</li>
5 <li>You do not have to specify all of the options for the box-shadow property (prefixed and not). Use the one that works in your browser (server-side validation uses the unprefixed version).</li>
5 <li>You do not have to specify all of the options for the box-shadow property (prefixed and not). Use the one that works in your browser (server-side validation uses the unprefixed version).</li>
6 </ol>
6 </ol>