Здравствуйте как мне покрасить отступы margin?
Сколько бы я не искал информации в интернете по этому поводу её почти нет
хорошо изучил html5
Но что делать, если элементов много?
const arr = [1,2,3,4,5,6,7,8,9,10];
arr.forEach((value, index) => {
window[`elem_${index}`] = value;
})
console.log(elem_1); // 1
console.log(elem_2); // 2
- a9.forEach(function(elem) {
- elem.toLowerCase();
- });
-
- return a9;
+ return a9.map(function (elem) {
+ return elem.toLowerCase();
+ });
- a9.forEach(function(elem) {
- elem.toLowerCase();
- });
+ a9.forEach(function(elem, i, arr) {
+ arr[i] = elem.toLowerCase();
+ });
- a9.forEach(function(elem) {
- elem.toLowerCase();
- });
+ for (let index = 0; index < a9.length; index++) {
+ a9[index] = a9[index].toLowerCase();
+ }
const lastDigit = 765 % 10; // -> 5
font-family: Gilroy
@font-face {
font-family: "OpenSans";
src: url("fonts/opensans.woff2") format("woff2"),
url("fonts/opensans.woff") format("woff");
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "OpenSans";
src: url("fonts/opensansbold.woff2") format("woff2"),
url("fonts/opensansbold.woff") format("woff");
font-weight: 700;
font-style: normal;
font-display: swap;
}