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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!