The ::first-letter is a pseudo-element that is used to add a style to the first letter of the specified selector.
Note: The pseudo-element only works if the parent element is a block container box
2️⃣ :nth-child
The :nth-child(n) selector matches every element that is the nth child, regardless of the type, of its parent.
It is used to style content based on its relationship with parent and sibling elements.
Note: n can be a number, a keyword, or a formula.
3️⃣ Disable a link
You can simply use the CSS pointer-events property to disable a link. The none value of this property specifies that the element is never the target of pointer events.
4️⃣ ::before
This CSS is a selector that allows you to choose a CSS element and insert content before every element with a specific class applied to it.
Use the content property to specify the content to insert.
5️⃣ ::after
The ::after selector inserts something after the content of each selected element.
Use the content property to specify the content to insert.
6️⃣ ::placeholder
The ::placeholder selector selects form elements with placeholder text, and lets you style the placeholder text.
Note: In most browsers, the placeholder text is a translucent or light gray color by default.
• • •
Missing some Tweet in this thread? You can try to
force a refresh
This repo contains the Software engineering principles adapted for JavaScript from the Clean Code. It's a guide to producing readable, reusable, and refactorable software in JavaScript.
Code Beautifier is based on CSS Tidy, the popular open-source CSS parser and optimizer. Enter your messy, minified, or obfuscated CSS Style Sheets into the field above to have them cleaned up and made pretty.
Mastering SEO optimization can be hard, especially if you’re just starting out.
Here's a compiled list of 7 Free SEO Tools for you.
A Thread👇
SEO tools investigate the potential of Web pages for high placement on search engine ranking pages.
They provide information on backlinks and keywords as well as insights into SEO competition on the Internet.
1️⃣ Google Search Console
Search Console tools and reports help you measure your site's Search traffic and performance, fix issues, and make your site shine in Google Search results
This repository has practical content that covers all phases of a technical interview, from applying for a job to passing the interviews to offer negotiation. 📎github.com/yangshun/tech-…
2️⃣ JavaScript Algorithms
This repository contains JavaScript-based examples of many popular algorithms and data structures. Algorithms and data structures implemented in JavaScript with explanations and links to further readings. 📎github.com/trekhleb/javas…