Merge pull request #3074 from webFardin/patch-5

Fixed a typo
This commit is contained in:
Ilya Kantor 2022-06-23 10:59:39 +03:00 committed by GitHub
commit 2293559545
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,7 +88,7 @@ But there's a pitfall. If we have a script after the style, then that script mus
```html run
<link type="text/css" rel="stylesheet" href="style.css">
<script>
// the script doesn't not execute until the stylesheet is loaded
// the script doesn't execute until the stylesheet is loaded
alert(getComputedStyle(document.body).marginTop);
</script>
```