• soundofsirens

    (@soundofsirens)


    Hi there! πŸ™‚
    I’ve got a css question:

    How do i format a semi-dynamic class name, which looks like this: “page_item page-item-7 current_page_item “

    The strong part is te dynamic one.

    I’m looking for something like:

    .*current_page_item* { }

    Do you know, what i mean?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Could you please elaborate on why you need this? How do expect your page to function? I am pretty certain that you cannot express variables in CSS2. CSS3 will contain a selector that will satisfy your request, but who knows how long that will take to get support across the board?

    E[foo^=”bar”]
    an E element whose “foo” attribute value begins exactly with the string “bar”

    from: http://www.w3.org/TR/css3-selectors/#selectors

    If you let me know more about what you’re trying to accomplish, I can most likely help you to find a working solution.

    -Mike

    DianeV

    (@dianev)

    So, you’re trying to use a variable to insert a CSS class on the page? Or in the stylesheet?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘semi-dynamic css class name’ is closed to new replies.