paulinee64 / kraken-good-type

Given some complete HTML, write the CSS to match the mockups in the screenshots.
0 stars 0 forks source link

Kraken #1

Open paulinee64 opened 8 years ago

paulinee64 commented 8 years ago

Hi @thomasjbradley,

We got as far as italicizing the first line (p). Stumped. Markbot is also being finicky, maybe because this is an older assignment?

Making headway though!

Need to know the css selector for a first child/first line.

Pauline & Chelle

thomasjbradley commented 8 years ago

Please sync & commit the code, there isn't anything here for me to see.

The selector for a first line is: ::first-line and it can be combined with others like :first-child.

Something like:

p::first-line {

}