HTML:
Код: Выделить всё
Large
Low
Нажми меня
Код: Выделить всё
.text{
font-size: 36px;
font-weight: 600;
font-family: 'Times New Roman', Times, serif;
color: red;
user-select: none;
}
Код: Выделить всё
const text = document.querySelector('.text');
const large = document.querySelector('.large');
const low = document.querySelector('.low');
large.addEventListener('click', () => {
text.style.fontSize = `calc(${text.style.fontSize} + 1px)`;
});
low.addEventListener('click', () => {
text.style.fontSize = `calc(${text.style.fontSize} - 1px)`;
});
Подробнее здесь: https://stackoverflow.com/questions/787 ... by-1px-acc
Мобильная версия