• 53 Posts
  • 26 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle




  • The Distros mentioned in the article are meant to be used without changing anything else…

    If you meant Arch, I agree with your concern. But Arch isn’t designed for beginners in the first place. It was designed to be built.

    Any operating system would break if you tinking too much about how it was built. In Windows, if you mess with regedit too much, it’ll start to misbehave or worse, Blue Screen…



































  • TechCodex@programming.devOPtoProgrammer Humor@lemmy.mlCSS: Chaos-Soothe-Shake
    link
    fedilink
    English
    arrow-up
    17
    ·
    edit-2
    11 months ago

    In HTML:

    div class=“hands”>

    In CSS:

    .hands

    A dot in CSS means you’re referring to an HTML Class. Note that this is different from the OOP Class in scripting languages. Think of HTML classes as classrooms. You can have multiple divs with the same class name, each will be affected when you style that class name. Just like students follow the same rule when applied to a classroom.

    In some specific instances, ID is used instead of class. # is used in CSS instead of a dot. The only difference is that in ID, each element should have a unique ID.

    div id=“right-arm”

    CSS: #right-arm