Last active
April 1, 2022 11:48
-
-
Save olygood/2cf0174b0bc239aa55ecf5fa10d4657d to your computer and use it in GitHub Desktop.
emmet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Emmet</title> | |
</head> | |
<body> | |
<!-- --> | |
<!-- .container --> | |
<div class="container"></div>* | |
<!-- footer{} --> | |
<footer>footer</footer> | |
<!-- div>ul>li --> | |
<div> | |
<ul> | |
<li></li> | |
</ul> | |
</div> | |
<!-- .liste>ul>li*5 --> | |
<div class="liste"> | |
<ul> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
</ul> | |
</div> | |
<!-- ul>li.item$*5 --> | |
<ul> | |
<li class="item1"></li> | |
<li class="item2"></li> | |
<li class="item3"></li> | |
<li class="item4"></li> | |
<li class="item5"></li> | |
</ul> | |
<!-- div>ul.ulLeft>li{$}*3 --> | |
<div> | |
<ul class="ulLeft"> | |
<li>1</li> | |
<li>2</li> | |
<li>3</li> | |
</ul> | |
</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// racourci Emmet | |
.container = <div class="container"></div> | |
footer{footer} = <footer>footer</footer> | |
div>ul>li = <div><ul><li></li></ul></div> | |
div>ul>li*5 = <div> | |
<ul> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
</ul> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment