Basic and Advance CSS Examples and Concepts Question: Download Cascading Style Sheet CSS PDF

What Is a Contextual Selector in CSS?

Tweet Share WhatsApp

Answer:

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}


Download Cascading Style Sheet CSS PDF Read All 26 Cascading Style Sheet CSS Questions
Previous QuestionNext Question
What Is a ID Selector in CSS?What Is a Group Selector in CSS?