• Как вывести все числа понедельников в месяце?

    hahenty
    @hahenty
    ('•')
    Абсурдный цепочечник
    Array(65).fill( +new Date() )
      .map( (a,i) => new Date( a+(i-32)*86400000 ) )
      .filter( a => a.getDay() === 1 && a.getMonth() === new Date().getMonth() )
    Ответ написан
    Комментировать
  • Какой стиль лучше использовать в лапше?

    alexey-m-ukolov
    @alexey-m-ukolov Куратор тега PHP
    А вы можете хоть один аргумент в защиту второго варианта привести? Вот и ответ.
    Ответ написан
    7 комментариев
  • Css Grid как сделать такую сетку?

    Kentavr16
    @Kentavr16
    long cold winter
    пример на скорую руку:
    html
    <!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">
        <link href="index.css" rel="stylesheet">
        <title>Document</title>
    </head>
    <body>
        <div class="main">
        <div class="divs1">1</div>
        <div class="divs2">2</div>
        <div class="divs3">3</div>
        <div class="divs4">4</div>
        </div>
    </body>
    </html>


    css:
    .main{
        height: 400px;
        display: grid;
        grid-template-columns: repeat(2,40%);
        grid-template-rows: repeat(12, 1fr);
        grid-template-areas:  "div1 div2"
                               "div1 div2"
                               "div1 div2"
                               "div1 div2"
                               "div1 div2"
                               "div1 div2"
                               "div1 div4"
                               "div3 div4"
                               "div3 div4"
                               "div3 div4"
                               "div3 div4"
                               "div3 div4";
                               grid-gap: 80px;
    }
    .divs1{
        border-radius: 30px;
        grid-area: div1;
    border: solid 2px;
    background-color: green;
    }
    .divs2{
        background-color: rgb(241, 183, 23);
        border-radius: 30px;
    
        grid-area: div2;
    
        border: solid 2px;
        }
    .divs3{
        background-color: rgb(212, 40, 155);
        border-radius: 30px;
    
        grid-area: div3;
    
            border: solid 2px;
            }
    .divs4{
        background-color: rgb(58, 145, 204);
        border-radius: 30px;
    grid-area: div4;
    
                border: solid 2px;
                }

    дальше не ленитесь, размеры подгоните под свои нужды)
    60b3c8fcea86d963534549.png
    Ответ написан
    Комментировать