Html Css js Frontend projects
9.83K subscribers
1.06K photos
137 videos
64 files
172 links
Advertisements Contact meπŸ‘‡πŸ»
@We_D5

Hello everyone you can learn interesting facts about coding in this channel πŸ’»

Perfluence
Download Telegram
πŸ”° Drop Cap In CSS

Drop cap is a typography technique where the first letter of a new chapter is dropped to occupy multiple lines. You may be familiar with this through books!


πŸ”₯ In CSS, this can be achieved through the initial-letter property, with a value indicating the number of lines to drop the character to

This property works only inside the ::first-letter pseudo element (and some other exceptions)

This also supports a multi value syntax of the format initial-letter: 3 2; where 2 indicated to have the baseline at line 2 (leave a gap of one line)

⚠️ This is not widely supported and required a vendor prefix to work in all browsers
πŸ”° πŸ”° Sequence of triggers in HTML and JavaScript!!

This behavior is known as event bubbling in JavaScript. When an event is triggered on an element, the event starts from the target element and then "bubbles up" to its parent elements, triggering their event handlers as well.
πŸ‘1
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ”° Adding custom cursors in CSS! πŸ”₯

The cursor property in CSS supports providing simple values, like 'pointer', for predefined cursors.

Or you can even plug in your own cursors!

This would look great in games, or special applications like spreadsheets, video editors etc.
Recently I got a quite a lot of questions on how to get started with React. The answer is to learn the fundamentals of JavaScript first (this applies to angular and vue as well). Here are some topics that might be useful to you
πŸ‘1
🧿 Server Actions in React!!

Improve app performance by handling logic server-side.
πŸ‘3