Seer of the tapes! Knower of the episodes!

  • 1 Post
  • 575 Comments
Joined 3 years ago
cake
Cake day: July 3rd, 2023

help-circle

  • A web page is a combination of a structured document and a separate stylesheet. The same structured document can be styled in radically different ways just by changing the stylesheet. This is how a website can offer different skins, light/dark mode, etc.

    Consider this basic HTML document:

    <html>
       <head><title>Test Page</title></head>
       <body>
          <p>This is a paragraph.</p>
          <ul>
             <li>This is an unordered bullet-point list item</li>
             <li>This is also a list item</li>
          </ul>
       </body>
    </html>
    

    And here’s a stylesheet to make the bullet points square:

    ul {
      list-style-type: square;
    }
    

    Change the stylesheet and you change how the document is rendered. “Reader mode” is just a minimalist stylesheet built into the browser.


















  • Melllvar@startrek.websitetomemes@lemmy.worldW Celsius
    link
    fedilink
    English
    arrow-up
    18
    arrow-down
    1
    ·
    4 months ago

    The one thing that bothers me about the metric system is how much of it is never actually used. No one says “1 megameter”, for example. They say “1,000 kilometers”. When you think about it, most metric prefixes are never used with most metric units.