.blocks{
white-space: nowrap;
}
The overflow property is specified as one or two keywords chosen from the list of values below. If two keywords are specified, the first applies to overflow-x and the second to overflow-y. Otherwise, both overflow-x and overflow-y are set to the same value.https://developer.mozilla.org/en-US/docs/Web/CSS/o...
{
headers: headers,
ip: ip,
minimalistic: true,
btn_text: "Скопировать",
copied: false,
name : platform.name,
version : platform.version,
layout : platform.layout,
os : platform.os,
product : platform.product,
manufacturer : platform.manufacturer,
width : window.screen.availWidth,
height : window.screen.availHeight,
}
Символы не перечисляются при итерации for...in. В дополнение к этому, Object.getOwnPropertyNames() не вернет символьные свойства объекта. Тем не менее, их можно получить с помощью Object.getOwnPropertySymbols().
/[\p{Mn}\p{Me}]+/
\p{Mn} or \p{Non_Spacing_Mark}: a character intended to be combined with another character without taking up extra space (e.g. accents, umlauts, etc.).
\p{Me} or \p{Enclosing_Mark}: a character that encloses the character is is combined with (circle, square, keycap, etc.).
version: '3.3'
services:
pgsql:
image: postgres:11.1
ports:
- 5432:5432
volumes:
- ./pgsql:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: app
POSTGRES_USER: app
POSTGRES_DB: app