About 50 results
Open links in new tab
  1. What does the ">" (greater-than sign) CSS selector mean?

    Jul 12, 2010 · The greater sign ( > ) selector in CSS means that the selector on the right is a direct descendant / child of whatever is on the left. An example:

  2. css selectors - CSS "and" and "or" - Stack Overflow

    May 9, 2010 · Learn about CSS selectors, including how to use "and" and "or" for efficient styling on Stack Overflow.

  3. Tailwind CSS v4 - Unknown at rule @plugin, @custom-variant, @theme ...

    Mar 17, 2025 · I'm using Tailwind CSS v4 in my Next.js project and getting the following errors in globals.css: Unknown at rule @plugin css (unknownAtRules) Unknown at rule @custom-variant css …

  4. CSS Child vs Descendant selectors - Stack Overflow

    CSS Child vs Descendant selectors Asked 16 years, 5 months ago Modified 2 years, 6 months ago Viewed 167k times

  5. Is there a CSS parent selector? - Stack Overflow

    CSS is relatively fast to parse, but selecting parent tags requires a relatively significantly larger amount of processing. Using the :has selector, we can now select div elements which have a p children, or …

  6. How to use CSS variables with Tailwind CSS - Stack Overflow

    Nov 17, 2020 · You can use font family CSS variables with Tailwind CSS by following these steps: Define your font family CSS variables in a global CSS file, such as global.css, and target the root …

  7. What is the purpose of the '@' symbol in CSS? - Stack Overflow

    @font-face { /* CSS HERE */ } So is this @ symbol something new in CSS3, or something old that I've somehow overlooked? Is this something like where with an ID you use #, and with a class you use .? …

  8. Can you use if/else conditions in CSS? - Stack Overflow

    Jul 15, 2009 · Update Jul 2023: Modern CSS now has @container queries support for size and soon also style & state, and that basically means a native way for an if/else condition. Below is an …

  9. How can I replace text with CSS? - Stack Overflow

    Obligatory: This is a hack: CSS isn't the right place to do this, but in some situations - eg, you have a third party library in an iframe that can only be customized by CSS - this kind of hack is the only …

  10. What is the order of precedence for CSS? - Stack Overflow

    Aug 3, 2014 · inline css ( html style attribute ) overrides css rules in style tag and css file a more specific selector takes precedence over a less specific one rules that appear later in the code override earlier …