<html>
<head>
<style>
/* Default CSS Values */
figure {
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 40px;
margin-right: 40px;
}
</style>
</head>
<body>
<p>A figure element is displayed like this:</p>
<figure>
<img src="cinqueterre.jpg" alt="Cinque Terre" width="304" height="236">
</figure>
<p>A customized figure element (changed margin-left):</p>
<figure style="margin-left:100px;">
<img src="cinqueterre.jpg" alt="Cinque Terre" width="304" height="236">
</figure>
<p><strong>Note:</strong> The figure tag is not supported in Internet Explorer 8 and earlier versions.</p>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss_default_figure by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:36:22 GMT -->
</html>