tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

grid-first-letter-green-margin-no-collapse-ref.html (593B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Grid Layout Test: Reference file text first letter should be green and margins do not collapse</title>
      4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
      5 <style>
      6  p {
      7    /* Prevent collapsing body and paragraph margins. */
      8    float: left;
      9  }
     10 
     11  .green {
     12    color: green;
     13  }
     14 </style>
     15 <p>
     16  <span class="green">T</span>he <strong>first letter</strong> of this paragraph, and only that one, should be <strong>green</strong>.
     17  In addition, body and paragraph margins should <strong>not collapse</strong>.
     18 </p>