Question
I can't figure out what i am doing wrong with this, im not sure what im doing wrong: Table Header Styles Go to the Table
I can't figure out what i am doing wrong with this, im not sure what im doing wrong:
Table Header Styles
Go to the Table Header Styles section. Create a style rule for the table header row group including every row within that row group that sets the row height to 60 pixels.
For the first th element in the first row of the table header row group, create a style rule that sets its font size to 2em. (Hint: Use the first-of-type pseudo-class to select the first table row and first heading cell.)
For th elements in the first row of the table header row group that are not the first heading cell, create a style rule that sets the background color to transparent and the font color to black. (Hint: use the not selector with the first-of-type pseudo-class to select headings that are not first in the table row.)
Styles.css:
/* Table Header Styles */ #pricing th { line-height: 60px; } .th:first-of-type { font-size:2em; } th:not(:first-of-type) { color:black; background-color:transparent; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started