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?
* 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:]
[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.
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.
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.
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.
My main issue isn't even that CSS exists, or its current functionalities. It's the expectation that, if you're creating a web page, you must use CSS extensively, and ditch every single "pure" HTML feature that might solve your problem.
On a practical level, what's intrinsically wrong with the center tag? Or tables for alignment? Those might be bad in some situations, but they're rather succinct and simple ways to get what you want.
"But what if in the future..." - address future problems in the future. As soon as they appear - not before or after that.
I just use Bootstrap and don't worry about learning CSS. Probably because I suck as CSS.
But if I can use a few Bootstrap classes to make my app 'presentable' and 'professional-looking' and spend my time on what's important...functionality and security...then I'm happy to.