About 721,000 results
Open links in new tab
  1. Styling html text without CSS - Stack Overflow

    Feb 22, 2014 · I would like to html code part of my tumblr page, but in the context, I can't add any css. Is there any way to format text size, font, color, etc. without using css? I looked at <font> tags but

  2. Centering an image link with HTML and no CSS - Stack Overflow

    Sep 26, 2014 · Learn how to center an image link using only HTML without CSS on Stack Overflow.

  3. light/dark mode in html, without CSS (only html) - Stack Overflow

    Jul 9, 2022 · (Pre-CSS graphical browsers might support the long-obsolete bgcolor, etc. attributes on the body element, but those do NOT affect any concept of color scheme, and the non-graphical …

  4. css - Styling Text without HTML Tag? - Stack Overflow

    Jun 12, 2016 · This Stack Overflow discussion explores methods for styling text without using HTML tags, focusing on CSS techniques and best practices.

  5. How do I style a HTML link without CSS? - Stack Overflow

    Sep 13, 2019 · I need to style links for a Blackberry browser that has disabled CSS. The following is what I try to achieve: <style type="text/css"> a.hover { border:0; } a { text-decoration: none;...

  6. html - I need an unordered list without any bullets - Stack Overflow

    Jun 22, 2009 · I have created an unordered list. I feel the bullets in the unordered list are bothersome, so I want to remove them. Is it possible to have a list without bullets?

  7. Simple two column html layout without using tables

    Learn how to create a simple two-column HTML layout without using tables in this helpful guide.

  8. How do I create Hover effects in HTML without using a CSS page

    Jan 1, 2014 · How do I create Hover effects in HTML without using a CSS page Asked 11 years, 11 months ago Modified 11 years, 11 months ago Viewed 24k times

  9. html - How to hide elements without having them take space on the …

    Jul 26, 2017 · I'm using visibility:hidden to hide certain elements, but they still take up space on the page while hidden. How can I make them totally disappear visually, as though they are not in the DOM at al...

  10. html - How to set an image's width and height without stretching it ...

    Nov 14, 2009 · 128 2017 answer CSS object fit works in all current browsers. It allows the img element to be larger without stretching the image. You can add object-fit: cover; to your CSS.