this post was submitted on 05 Jan 2026
31 points (100.0% liked)

Open Source

43163 readers
1239 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 6 years ago
MODERATORS
 

I have made a website in simple HTML and CSS (no JS).

I hope it would be compatible with as many browsers as possible.

Is there a free and open source solution that can test and reveal the oldest version of each browser compatible with my site? I want to be able to say something like: This site is compatible with FF v60, Chromium v50, Safari vxx, etc.

Or make a compatibility table so users can know that this was tested.

you are viewing a single comment's thread
view the rest of the comments
[–] JRaccoon@discuss.tchncs.de 10 points 6 days ago

Most browser compatibility issues come from JavaScript, not HTML/CSS. Unless you want to support ancient/dead browsers (like Internet Explorer or non-HTML5 browsers), it's very likely there won't be any issues.

MDN has a compatibility table for every HTML tag and CSS property. For a simple static site I would just manually check there.