Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Oppo Find N6 shown globally with ‘least noticeable foldable crease’

    Motorola to deliver privacy-focused phones by offering GrapheneOS as alternative to Android

    TCL unveils Nxtpaper 70 Pro smartphone with a flicker-free, paper-like display to help minimize headaches and eye strain

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026
    • Business

      These ultra-budget laptops “include” 1.2TB storage, but most of it is OneDrive trial space

      March 1, 2026

      FCC approves the merger of cable giants Cox and Charter

      February 28, 2026

      Finding value with AI and Industry 5.0 transformation

      February 28, 2026

      How Smarsh built an AI front door for regulated industries — and drove 59% self-service adoption

      February 24, 2026

      Where MENA CIOs draw the line on AI sovereignty

      February 24, 2026
    • Crypto

      Bitcoin Bear Market Could Get Worse Despite the Latest Relief Rally

      March 1, 2026

      Crypto Scammers Have Been Quiet in February, Hacks Fall by 90%

      March 1, 2026

      Vitalik Buterin Signals Major Ethereum Wallet Overhaul

      March 1, 2026

      Why is Hyperliquid Price Rallying Amid the US-Iran War

      March 1, 2026

      Arbitrum Price Under Pressure: 60 Million ARB Whale Sale Sparks ATL Fear

      March 1, 2026
    • Technology

      Oppo Find N6 shown globally with ‘least noticeable foldable crease’

      March 2, 2026

      Motorola to deliver privacy-focused phones by offering GrapheneOS as alternative to Android

      March 2, 2026

      TCL unveils Nxtpaper 70 Pro smartphone with a flicker-free, paper-like display to help minimize headaches and eye strain

      March 2, 2026

      Qi2.2 charging boost

      March 2, 2026

      What if the real risk of AI isn’t deepfakes — but daily whispers?

      March 1, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Text-Based Web Browsers
    Technology

    Text-Based Web Browsers

    TechAiVerseBy TechAiVerseJanuary 13, 2026No Comments6 Mins Read5 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Text-Based Web Browsers
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Text-Based Web Browsers

    Before I start, let me get two things out of the way:

    • In this article I’m not going to include the admittedly cool browsh, because it only works by utilizing Firefox under the hood. When I say text-based, I’m talking about old-school browsers like ELinks, Lynx or w3m. These are also the three browsers I’ve used to test everything described below.
    • The whole article ended up being a rant about how text-based browsers deal with features that got added to HTML. Or more like, how they neglect dealing with said features.

    Do text-based web browsers still matter?

    Well, I won’t be the judge of that. I like them, I have them installed, and I test every project I create in them. But they are not what I use to surf the web.

    Speaking of testing your creations, here’s the good news: If your project has a solid HTML foundation that you then progressively enhance with CSS and JS, you are off to a great start.

    How did HTML evolve in recent years?

    While CSS is the star of the show when it comes to new features, HTML ain’t stale either. If we put the long-awaited styleable selects and Apple’s take on toggle switches aside, there’s a lot readily available cross-browser.

    But here’s the thing: Whenever we say cross-browser, we usually look at the big ones, never at text-based browsers. So in this article I wanna shed some light on how they handle the following recent additions.

    How do text-based web browsers handle modern HTML?

    • Details
    • Data lists
    • Dialogs
    • Popovers
    • Inert content areas
    • Hidden content
    • Visually hidden content

    When viewing a web page in a text-based browser, you essentially get plain HTML, no CSS, no JS. There is some “styling”, a result of the elements’ semantics, but don’t expect anything fancy, we are down to colors, indentation, and centered text.

    It reminds me of what the browsers we are used to give us when they show unstyled HTML—well, HTML with the browser default styles, to be exact. That in turn reminds me of CSS Naked Day.

    Text-based browsers work well with good old HTML. Said recent additions however are a bit more nuanced (e.g. interactive), so let’s talk about them individually.

    Details

    Disclosure widgets are simple interactive elements we no longer need JS for. When

    are closed, only their

    is shown.

    Text-based browsers have no clue what disclosure widgets are, so they always show the whole

    content, meaning you always get the open state. This way things can get verbose, but in essence it’s okay.

    Verdict: Acceptable.

    Data lists

    Data lists can be used to add suggested values to an input field. In my tests they have been ignored entirely, Lynx even mentions that it encountered “bad HTML”, probably because it expects only in a field, which is better than nothing. Side note: I’ve been told data lists have accessibility issues, so …

    Verdict: Whatever.

    Dialogs

    Yes, HTML can do modal and non-modal dialogs, and even alert dialogs, all thanks to the

    element. Initially we needed JS to toggle their visibility, but with the help of the Popover API (see next chapter) we can now even get most of it done in plain HTML.

    Alas, once again there is no support in text-based browsers, so you’ll end up seeing all dialog content, as if they had their open attribute set. Consequently, there’s no awareness of a form’s method="dialog" nor a submit button’s formmethod="dialog", so in both cases the form action is triggered.

    Verdict: Problematic.

    Popovers

    The Popover API is probably my favorite new feature, but only if you stick to regular web browsers.

    Given that dialogs are a type of popover, it’s no surprise that nothing works, and once again all popover content gets dumped onto the screen.

    By now I think you get the idea, so I won’t even talk about the Invoker Commands API at this point.

    Verdict: Most likely problematic.

    Inert content areas

    A modal dialog makes the rest of the page inert, so we don’t have to do it. But with the global inert attribute we can do this manually too, if we need to make certain parts of the DOM unreachable.

    Sure enough, text-based browsers will happily let you access interactive elements inside an inert content area.

    Verdict: Bad.

    Hidden content

    We’re now approaching something that is not new at all, the global hidden attribute has been supported for over a decade. It allows us to hide content in the same way as display: none, but directly in HTML.

    Adding support in text-based browsers has been discussed back in the day, but got rejected, hence it was never implemented. You’ll end up seeing all content marked as hidden. This is the primary reason why I started writing this article, and what enrages me the most. If I decide to hide content in HTML instead of CSS, I must have a very good reason, thus hidden content should not be visible in any browser! Certain progressive enhancement techniques work by hiding content in HTML and then making it visible via CSS or JS. That possibility goes out the window in text-based browsers.

    Verdict: Epic fail. 😠 🤬

    Visually hidden content

    Just kidding, there’s still no native way in HTML to hide content visually, so we continue to rely on class names like .visually-hidden or .sr-only. No matter how they are named, they need to summon quite a few of lines of CSS to get things done. Whether there should be a native way is up for debate. Personally I would welcome a one-liner to achieve this, but it should remain in the domain of CSS.

    However, if we had a way in HTML, text-based browsers would display such visually hidden content anyway, that is certain.

    Verdict: To be continued.

    Now what? What now?

    Text-based browsers and modern HTML, no success story in sight. Given the progress we see in web technologies, the gap will only widen, so much so that w3m and its friends might fall into oblivion.

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleProvenance Is the New Version Control
    Next Article Nvidia Rubin’s rack-scale encryption signals a turning point for enterprise AI security
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Oppo Find N6 shown globally with ‘least noticeable foldable crease’

    March 2, 2026

    Motorola to deliver privacy-focused phones by offering GrapheneOS as alternative to Android

    March 2, 2026

    TCL unveils Nxtpaper 70 Pro smartphone with a flicker-free, paper-like display to help minimize headaches and eye strain

    March 2, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025701 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025284 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025164 Views

    6 Best MagSafe Phone Grips (2025), Tested and Reviewed

    April 6, 2025124 Views
    Don't Miss
    Technology March 2, 2026

    Oppo Find N6 shown globally with ‘least noticeable foldable crease’

    Oppo Find N6 shown globally with ‘least noticeable foldable crease’ – NotebookCheck.net News ⓘ OppoThe…

    Motorola to deliver privacy-focused phones by offering GrapheneOS as alternative to Android

    TCL unveils Nxtpaper 70 Pro smartphone with a flicker-free, paper-like display to help minimize headaches and eye strain

    Qi2.2 charging boost

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Oppo Find N6 shown globally with ‘least noticeable foldable crease’

    March 2, 20262 Views

    Motorola to deliver privacy-focused phones by offering GrapheneOS as alternative to Android

    March 2, 20262 Views

    TCL unveils Nxtpaper 70 Pro smartphone with a flicker-free, paper-like display to help minimize headaches and eye strain

    March 2, 20262 Views
    Most Popular

    7 Best Kids Bikes (2025): Mountain, Balance, Pedal, Coaster

    March 13, 20250 Views

    VTOMAN FlashSpeed 1500: Plenty Of Power For All Your Gear

    March 13, 20250 Views

    Best TV Antenna of 2025

    March 13, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.