🚀 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 💪

CSS, Flexbox Gap

In 2021 appeared a new CSS trick which is called the flexbox gap. This property is borrowed from Grid CSS and is called grid-gap. The gap is used to create space between cells....

March 2, 2021 · 2 min · Coderslang Master

How to add a comment in CSS

Just link in plain HTML, you can add comments to the CSS files. Maybe you want to leave a note for yourself, or maybe you want to help your colleagues sort out some difficult points....

March 1, 2021 · 1 min · Coderslang Master

External CSS stylesheet

CSS (Cascading Style Sheets) is a style sheet language used for describing the presentation of a document written in a markup language. A style sheet is a collection of rules that tells a web browser how to display a document written in HTML or XML....

November 6, 2022 · 4 min · Coderslang Master

JavaScript Interview Question #42: How Math.max works in JS

How exactly Math.max works in JavaScript? What’s the output? . . . . . . . . . . . . . . . . . In JavaScript, the function Math....

February 28, 2021 · 1 min · Coderslang Master

Internal CSS stylesheet in the HTML document

— You already know how you can add styles to a specific element. For example, you know how to change the color of the text inside the <p> tag. But what if we need to do this for several tags of the same type?...

February 27, 2021 · 3 min · Coderslang Master

Introduction to CSS for beginners

CSS stands for Cascading Style Sheets. It’s responsible for all the beauty on the screen: fonts, colors, backgrounds, text formatting, and even animation. Using CSS, you can change the position of HTML elements relative to each other or fix them at some point on the screen....

February 26, 2021 · 3 min · Coderslang Master

HTML document structure

In the previous lectures, you learned about the most common HTML tags. It’s hard to imagine a web page without headings, paragraphs, links, lists, and tables. Today, I’m going to tell you about tags that are not so obvious....

February 25, 2021 · 3 min · Coderslang Master

JavaScript Interview Question #41: Increasing MAX_SAFE_INTEGER

True or false? What appears in the console? . . . . . . . . . . . . . . . . . JavaScript uses the double precision floating point numbers even to represent integers....

February 25, 2021 · 1 min · Coderslang Master

Nested HTML tags

In HTML, you can nest not only inline tags but also almost any other combination of tags. For example, you can easily create a <div> tag to merge two paragraphs:...

August 21, 2022 · 1 min · Coderslang Master

Inline HTML tags

Inline HTML tags are those tags which are used to format the content within a web page without affecting the layout of the page. These tags are mostly used to apply formatting on text, but can also be used on other elements like images and tables....

November 6, 2022 · 2 min · Coderslang Master