Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is a Contextual Selector
What Is a Contextual Selector? - CSS Tutorials - Introduction To CSS Basics
✍: FYIcenter.com
A contextual selector selects a HTML tag that is nested inside another specified tag. Contextual selectors are specified with two tags separated with a space like (outer_tag inner_tag). For example, the following CSS definition uses a contextual selector:
/* set paragraph inside a table to use arial font family */
FORM P {font-family: arial}
If you apply the above CSS definition to the following HTML document, you will get the search instruction block in "arial" font family:
<form action=search.cgi> <p>Search instruction...</p> <input type=submit value=Search> </form> <p>Other normal paragraphs...</p>
2007-05-11, 5579👍, 0💬
Popular Posts:
How To Select an Oracle System ID (SID)? - Oracle DBA FAQ - Creating New Database Instance Manually ...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
What is difference between ADPATCH and OPATCH ? # ADPATCH is utility to apply ORACLE application Pat...
What Are the Parameter Modes Supported by PL/SQL? - Oracle DBA FAQ - Creating Your Own PL/SQL Proced...
How you will enable front-end validation based on the xml in validation.xml? The <html:javascr...