Page 67 - CSS
P. 67

Demonstration with actual code



         div > div {
           background-image: url(http://i.stack.imgur.com/r5CAq.jpg);
           background-repeat: no-repeat;
           background-position: center center;
           background-color: #ccc;
           border: 1px solid;
           width: 20em;
           height: 10em;
         }
         div.contain {
           background-size: contain;
         }
         div.cover {
           background-size: cover;
         }
         /********************************************
          Additional styles for the explanation boxes
         *********************************************/

         div > div {
           margin: 0 1ex 1ex 0;
           float: left;
         }
         div + div {
           clear: both;
           border-top: 1px dashed silver;
           padding-top:1ex;
         }
         div > div::after {
           background-color: #000;
           color: #fefefe;
           margin: 1ex;
           padding: 1ex;
           opacity: 0.8;
           display: block;
           width: 10ex;
           font-size: 0.7em;
           content: attr(class);
         }





        https://riptutorial.com/                                                                               45
   62   63   64   65   66   67   68   69   70   71   72