This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Stew
over 8 years

20/26 Is this correct?

/Add your CSS below!/ td { height:50px; border:1px dashed blue; table: border:1px solid black; }

Answer 55a7c89de39efef687000002

2 votes

Permalink

td { height: 50px; border: 1px dashed blue;

} table { border: 1px solid black; }

points
Submitted by yashshah96
over 8 years

Answer 55962c21d3292f934600069d

0 votes

Permalink

no, general css syntax:

selector {
  property: value;
  property: value;
}

table is a selector, not a property, and this:

table: border:1px solid black;

isn’t valid anyway, you can’t have two property’s like that.

points
Submitted by stetim94
over 8 years

2 comments

Stew over 8 years

oh ok, thanks

stetim94 over 8 years

you’re welcome

Answer 55db60c7e39efe662b000124

0 votes

Permalink

td { height:50px;} this is all i entered and it allowed me to go to next SUBJECT I DID finish it properly though.

points
over 8 years

Answer 55db6146b62548db6e000483

0 votes

Permalink

td { height:50px; border: 1px dashed blue;} table { border : 1px solid black;} this is the right answer.

points
over 8 years