Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   [css / html] Selecting an ID within an ELEMENT (https://thetfp.com/tfp/tilted-technology/63731-css-html-selecting-id-within-element.html)

ibis 07-25-2004 09:38 PM

[css / html] Selecting an ID within an ELEMENT
 
OK, I knwo this is easy... but I'm pulling a brain fat here...

I have:

<div id="box">
<p>Arrhhh</p>
</div>

How do I make all instances of the element "p" within the id "box" something.

I know I've done this before.... and I'm pissed that I can't remember how to at the moment...

Mabye I shouldn't have had that Jack and Coke ;)

EDIT: The w3 documentation is here: http://www.w3.org/TR/REC-CSS2/select...#id-selectors. But hell if I can make anything of it.

ibis 07-25-2004 09:42 PM

OK, I figured it out. Damn, I'm stupid.

tritium 08-04-2004 05:37 PM

div#box p { }

SinisterMotives 08-05-2004 08:44 AM

On a related note, why doesn't IE implement this?

#box input[type=text] { }
#box input[type=submit] { }


All times are GMT -8. The time now is 08:27 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73