-
Notifications
You must be signed in to change notification settings - Fork 0
CSS guideline
Grenvals edited this page Mar 7, 2021
·
81 revisions
[images/image-1.png] https://user-images.githubusercontent.com/40334272/85372438-8312cf00-b53a-11ea-885f-b994aba5a635.jpg
// погано
class Jedi {
constructor() {}
getName() {
return this.name;
}
}
// погано
class Rey extends Jedi {
constructor(...args) {
super(...args);
}
}
// добре
class Rey extends Jedi {
constructor(...args) {
super(...args);
this.name = "Rey";
}
}//Style for layout as seen from the entire page
.l-header
position: fixed
top: 0
left: 0
z-index: 100
width: 100%
//Style of the header part
.p-header
display: flex
&__logo
width:100px
height:50px