2019-11-04 21:01:05 -06:00
---
id: 5d822fd413a79914d39e98cd
title: Part 5
challengeType: 0
2021-01-13 03:31:00 +01:00
dashedName: part-5
2019-11-04 21:01:05 -06:00
---
2020-11-27 19:02:05 +01:00
# --description--
2019-11-04 21:01:05 -06:00
In CSS, you can target everything with an asterisk. Add a border to everything by using the `*` selector in your style area and giving it a `border` of `1px solid black` . This is a trick I like to use to help visualize where elements are and their size. You will remove this later.
2020-11-27 19:02:05 +01:00
# --hints--
2019-11-04 21:01:05 -06:00
2020-11-27 19:02:05 +01:00
test-text
2019-11-04 21:01:05 -06:00
2020-11-27 19:02:05 +01:00
```js
assert(
code.match(
/< style \s* > \s* \*\s*{ \s*border \s*: \s*1px \s+solid \s+black \s*;? \s*} \s*< \/style \s*>/g
)
);
2019-11-04 21:01:05 -06:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2019-11-04 21:01:05 -06:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2019-11-04 21:01:05 -06:00
```html
<!DOCTYPE html>
< html >
< head >
< title > freeCodeCamp Skyline Project< / title >
< style > < / style >
< / head >
< body >
< / body >
< / html >
```
2020-11-27 19:02:05 +01:00
# --solutions--
2019-11-04 21:01:05 -06:00
```html
<!DOCTYPE html>
< html >
< head >
< title > freeCodeCamp Skyline Project< / title >
< style >
* {
border: 1px solid black;
}
< / style >
< / head >
< body >
< / body >
< / html >
```