0:00:00.512,0:00:04.092 Listen, folks.[br]The CSS properties are never-ending. 0:00:04.286,0:00:06.035 Let me show you a few more. 0:00:06.253,0:00:08.723 What if I want to change 0:00:08.723,0:00:12.054 the spacing between the lines [br]in my song lyrics? 0:00:12.439,0:00:15.903 I could use the `line-height` property, 0:00:15.903,0:00:19.001 and specify something like 15px. 0:00:19.212,0:00:24.755 Or maybe better would be 1.5em,[br]that makes the line height 0:00:24.755,0:00:28.034 150 percent of whatever the text size was. 0:00:28.481,0:00:31.785 What if I want my song lyrics to be[br]center-aligned? 0:00:32.133,0:00:36.232 I could use the `text-align` property,[br]and specifiy `center`. 0:00:36.528,0:00:39.410 I could also change it [br]to `right`, or `justified`, 0:00:39.410,0:00:41.783 though I think that would look a bit odd. 0:00:42.108,0:00:45.327 What if I want to underline [br]my main paragraph? 0:00:45.895,0:00:49.430 I could use the [br]`text-decoration` property 0:00:49.430,0:00:51.888 and specify `underline`. 0:00:53.224,0:00:56.685 What if I want to remove the underline [br]from my links, 0:00:56.685,0:00:58.473 like that link to Wikipedia? 0:00:58.722,0:01:01.289 Well, the browser has [br]a default set of styles 0:01:01.289,0:01:02.852 that it applies to everything. 0:01:02.852,0:01:05.317 Like `text-decoration: underline` [br]for links. 0:01:05.473,0:01:09.311 But we can use CSS to override [br]the browser's default styles, 0:01:09.311,0:01:11.363 and say `text-decoration: none`. 0:01:12.049,0:01:19.335 Just add this rule here: [br]a { text-decoration: none; } 0:01:20.283,0:01:22.815 And you see now [br]it's no longer underlined. 0:01:22.929,0:01:24.998 But we should be careful when we do that, 0:01:24.998,0:01:27.623 because the defaults [br]are usually picked for a reason. 0:01:27.698,0:01:31.404 If links aren't underlined, [br]how will people know that they're links? 0:01:31.489,0:01:35.038 What if they never click them because[br]they think they're just normal text? 0:01:35.102,0:01:38.680 If we do remove that underline, [br]we should be making sure 0:01:38.680,0:01:42.015 that the links look [br]significantly different in some other way. 0:01:42.094,0:01:43.933 Otherwise, we'll make users sad. 0:01:43.991,0:01:45.911 And sad users make me sad. 0:01:46.185,0:01:48.380 They should make you sad, too. 0:01:49.024,0:01:51.536 I could tell you [br]about text properties all day. 0:01:51.617,0:01:54.179 But I won't, because [br]we have so much more to cover. 0:01:54.234,0:01:56.108 There are hundreds of CSS properties. 0:01:56.108,0:01:58.173 And browsers are adding more [br]every year. 0:01:58.215,0:02:00.562 I probably won't ever tell you [br]about all of them. 0:02:00.562,0:02:03.187 But hopefully I can tell you enough [br]to get you excited. 0:02:03.187,0:02:06.489 And then if you're wondering [br]if there's a CSS property for some style 0:02:06.489,0:02:08.347 and it's not in our documentation here, 0:02:08.347,0:02:11.102 you can just visit [br]your local search engine and find out. 0:02:11.187,0:02:12.737 For example, if you're wondering 0:02:12.737,0:02:15.308 if there's a way [br]to add a drop-shadow to your text, 0:02:15.308,0:02:17.961 just search "CSS text shadow" [br]on the Internet, 0:02:17.961,0:02:19.446 and you'll see lots of results. 0:02:19.570,0:02:21.734 Generally, being able [br]to search the Internet 0:02:21.734,0:02:23.142 for answers to your questions 0:02:23.142,0:02:25.449 is a really important skill [br]for a web developer. 0:02:25.449,0:02:28.293 Because so many people [br]have had the same questions as you, 0:02:28.293,0:02:31.778 and 99.9 percent of the time, [br]the answer is out there. 0:02:31.942,0:02:34.525 You just have to get good at finding it.