top 50 comments

sorted by: hot top controversial new old
[–] 10 points 3 years ago (5 children)

As an amateur web designer in the 90s and early 2000s, this speaks to me. I stopped web development when CSS became popular and I couldn’t wrap my head around it.

Is there a petition I can sign to scrap all this nonsense modern web progress and go back to that beautiful, dial-up friendly HTML?

  • source
  • hideshow 8 child comments
  • [–] 11 points 3 years ago (3 children)

    I stopped doing frontend work when responsive design became important. Super unpleasant work. Now I'm happier at the backend where I don't have to worry about how my shit looks on the 7 million possible screen sizes people are likely to use. Life is more peaceful here.

  • source
  • parent
  • hideshow 6 child comments
  • [–] 2 points 3 years ago (1 child)

    Alright hang on now - responsive design is about not excluding people based on the device they're using. Many people do everything in their lives from a low end cell phone and cutting them out is a shit thing to do. Responsive design and progressive enhancement are objectively good things.

    The tools have gotten better over the past several years, it's not as hard as it used to be.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 3 years ago (1 child)

    Better? Not really. My experience is that sites have gotten "better" for mobile at the cost of making them nearly or completely unusable for people using desktop browsers with non-default settings (especially additional security lockdown, but even forcing a specific colour scheme can break some sites because some idiot calling himself a designer used css background-image for images that are content). Which means a fair number of sites are broken to some degree for me.

    The more things change, the more they stay the same.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 3 years ago*

    Those things are completely unrelated? I said the tools for responsive design have gotten better, which they objectively have.

    You're not wrong that most css in the wild is trash, and I love dark mode as much as the next guy but you can't complain that sites break when you're fucking with styles. It's the cost of tinkering.

  • source
  • parent
  • [–] 1 point 3 years ago (1 child)

    Frontend developer here, please save me from my torment, thanks

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 3 years ago

    As recently as 6 or 7 years ago I maintained some apps that forced 5.5 compatibility mode. Because they were poorly architected in a shitty framework and no one was willing to do or pay for or train for a rewritten version. They were finally migrating to .NET when I left. It was the govt so they are likely wrapping up that migration now.

  • source
  • parent
  • [–] 0 points 3 years ago (2 children)

    Let's just design every website using a table again. Or even better, frames!

  • source
  • parent
  • hideshow 4 child comments
  • load more comments (2 replies)
    [–] 5 points 3 years ago (2 children)

    The web is beyond bloated.

    The heavy reliance on JavaScript has suck the joy out of browsing the web for me

  • source
  • hideshow 4 child comments
  • [–] 1 point 3 years ago (1 child)

    May I introduce you to the Gemini project?

    It's a new(ish) protocol for sharing interlinked text documents. It's intended to sit between Gopher and HTML in terms of complexity and is deliberately, aggressively simple (some might even say crippled) with the intention that it will be nearly impossible to extend the protocol for surveillance capitalism. It's not trying to replace ye olde WWW, but to provide a human-focused place for text-first, 90's-style sites to live. ...just without the blink tags.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 5 points 3 years ago (2 children)

    Image Transcription: Meme


    STOP USING CSS

    * HTML WAS NOT SUPPOSED TO BE GIVEN CLASSES
    * YEARS OF MARKUP yet NO REAL-WORLD USE FOUND for styling beyond \
    * Wanted to center content for a laugh? We had a tool for that: It was called ""
    * "Yes please align that content exactly 32.89% left. Please align 59.0px down"
        - Statements dreams up by the utterly deranged

    LOOK at what FRONT-END Devs  have been demanding your Respect for all this time.
    (This is REAL CSS. done by REAL Devs)

    [Three screenshots of CSS code, each one marked with a number of red question marks. The first screenshot has five question marks and reads as follows:]

    h1 {
            font-size: .75em;
            position: absolute;
            bottom: 20px;
            width: 94%;
            left: 2%;
    }
    

    [The second screenshot has eight question marks and reads as follows:]

    *{
        font-size: 30px;
    
    }
        q::before {
      content: "«";
      color: blue;
    ]
    
    q::after {
      content: "»";
      color: red;
    }
    

    [The third screenshot has sixteen question marks and reads as follows:]

    #header ul a:focus, #header ul a:active,
    #header ul a:hover {
        background-color: #5A5A5A;
        outline-color: -moz-use-text-color:
        outline-style: none;
        outline-width: medium;
    }
    

    [The screenshots end.]

    "Hello center that div please"

    They have played us for absolute fools


    I am a human who transcribes posts to improve accessibility on Lemmy. Transcriptions help people who use screen readers or other assistive technology to use the site. For more information, see here.

  • source
  • hideshow 4 child comments
  • [+] 3 points 3 years ago* (last edited 3 years ago) (1 child)
  • [–] 3 points 3 years ago

    Oh, got that layout looking all nice and modern?

    Be a shame if somebody... tried to email it!

  • source
  • [–] 2 points 3 years ago*

    Really though it's a shame that so many devs still try to treat the web like print where they have full control over the layout at any given time. Even after the death of Flash and the introduction of smartphones and their need for fluid layouts. Meanwhile concepts like progressive enhancement got left behind.

    At least we've got flexbox and grid now.

  • source
  • [–] 1 point 3 years ago (3 children)

    The web killed the Internet.

    JavaScript killed the web.

    CSS defiled its corpse.

    Honestly and without any trace of irony, I wish CSS would die and be replaced by maybe half a dozen new HTML tags to support a few specific responsive design patterns.

    CSS runs counter to the concept of HTML. Web design used to be inherently user-centric. The designer was not supposed to have much of a say in how it looked on a client's system, because that was up to the client. The designer only provided high-level hints like "this is a paragraph" or "this is emphasized". The browser decided how a paragraph should be displayed, which fonts to use, etc.

    Over time, visual designers clawed more and more control from the user, much to the detriment of the entire rest of the world.

    99% of web sites would be better if they conformed to basic semantic markup. Low-level design parameters should not exist on the web.

    It's a straight line from CSS to Google's new trusted web bullshit. It's all about wresting control away from the user and giving it to the site designer. Fuck you, site designer. My eyeballs do not belong to you.

  • source
  • hideshow 5 child comments
  • [–] 14 points 3 years ago (3 children)

    I only disagree with you in that for an application, the application designer should choose what an application looks like.

    The argument of if applications should be deployed via web browser is an independent discussion.

  • source
  • parent
  • hideshow 4 child comments
  • [–] 0 points 3 years ago* (1 child)

    Good thing web pages are supposed to be documents and not "applications," then!

    If you want a goddamn application, go resurrect Java Web Start or something.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 0 points 3 years ago* (1 child)

    That was true 20 years ago. Things evolve. No one wants to download and install ten million individual apps for every single thing they do on the internet.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 3 years ago*

    The irony of people posting on web applications they utilize for their own enjoyment, "applications don't belong on web browsers" is killing me here.

    There is a portion of the tech industry with their head stuck firmly up their ass and it seems a lot of em hang out in the fediverse. These people would demand we go back to party lines and manual switchboards. Techno-hipsters who are just angry at the next generation who took their BBS internet and actually made the world use it.

    Downvote me, that's fine. Use that interactivity application on your browser. Go be the very definition of irony. Please.

  • source
  • parent
  • load more comments (2 replies)
  • [–] 2 points 3 years ago (1 child)

    lol. lmao. What am I even reading?

    The CSS is literally openly served along with the website. One line change in the HTML (in allows you to make your own CSS for a site. There's a world of difference between that and "Google's new trusted web bullshit". And you know who sits much closer to Google than HTML and CSS?

    Javascript. That's who.

  • source
  • parent
  • hideshow 2 child comments
  • load more comments (1 reply)

    Are you even a real dev if you haven't used marquee and blink?

  • source
  • [–] 1 point 3 years ago

    CSS? More like CSS-illy.

  • source
  • [–] 1 point 3 years ago*

    The problem is that HTML was not designed to be a layout description. Your browser was to decide.

    So, to force HTML to be a layout description rather than simple markup, we have this mess.

    HTML != TeX

  • source
  • [–] 1 point 3 years ago (1 child)

    You're never supposed to use pixels in CSS anyway; you should bare minimum use percentages to account for different screen sizes to make the designs responsive and not look terrible on different screen sizes.

  • source
  • hideshow 2 child comments
  • [–] 1 point 3 years ago* (1 child)

    The future of HTML is classless, stateless and moneyless! 🏴

  • source
  • hideshow 2 child comments
  • [–] 0 points 3 years ago (1 child)

    As a frontend dev I hate frontend. CSS is not even the main issue.

    Fuck Jest and having to mock libraries. I'm gonna go backend in Go or something like that ASAP.

  • source
  • hideshow 2 child comments
  • load more comments
    view more: next ›