-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Jorge Fco edited this page Jun 20, 2018
·
7 revisions
[] https://www.educative.io/collection/5191711974227968/5641332169113600 [] https://developer.mozilla.org/es/docs/Web/CSS/Selectores_atributo [] https://developer.mozilla.org/es/docs/Web/CSS/Pseudoelementos
/*My comment*/
/*
- More comments...
*/
/*Good*/
#header{
}
/*Bad*/
#1header{
}
/*Correct*/
#header1{
}
.header{
&.is-fixed{
position: fixed;
}
}
.header{
color: red;
.navigation{
position: relative;
}
}
.header,
.footer{
color: red;
}