Borders

We can also add borders to elements.

Try adding the following to the first image:

/* Your CSS here */

header img {
	height: 100px;
+	border: 1px solid #000000;
}

You should see a thin black border appear around the first image.

border: 1px solid #000; is short hand for “create a border that is 1px wide, solid and black.

Try changing the width and colour of the border.

There are several different border styles - here's a list of them . Try changing the style of the border.

Add a border to each card.

Here’s what your page should look like so far: