Blog

Abordamos tópicos de programación web, apps Android y escritorio con un enfoque 100% práctico y aplicado al mundo laboral.

Rutas de Aprendizaje Libros Cursos Categorías Anuncios

The nth-child pseudo-class in CSS

11-12-2025 - Andrés Cruz

The nth-child pseudo-class in CSS

CSS The CSS pseudo-class :nth-child allows you to select elements based on their position in the DOM using numbers, formulas, or patterns like odd, even, and An+B. In this guide, you'll learn how it works, how to apply it to lists, tables, and modern layouts, and how to avoid common mistakes when using :nth-child with practical examples and real-world case studies.


The CSS pseudo-class :empty to select elements with no content

11-12-2025 - Andrés Cruz

The CSS pseudo-class :empty to select elements with no content

CSS The selector or pseudo-class :empty allows you to select elements with empty content and apply a style to them. For the selector, the use of :before and/or :after are not content, but children/nodes, comments, etc. are.


The :checked pseudo-class in CSS

12-12-2025 - Andrés Cruz

The :checked pseudo-class in CSS

CSS The pseudo-class selector :checked represents (allows selection of) any HTML element radio, checkbox or option and applies a style or logic when it is selected.


The clip-path property in CSS for selecting regions to display in elements

16-12-2025 - Andrés Cruz

The clip-path property in CSS for selecting regions to display in elements

CSS The CSS clip-path property allows you to specify regions of any of the existing HTML elements through geometric shapes.


The CSS pseudo-class :target to highlight linked content

18-12-2025 - Andrés Cruz

The CSS pseudo-class :target to highlight linked content

CSS Learn what the `:target` pseudo-class is in CSS, how it works, and when to use it. Practical examples, animations, transitions, and modals without JavaScript.


How to make a simple cloud in CSS

31-12-2025 - Andrés Cruz

How to make a simple cloud in CSS

CSS We will see how to create a simple cloud in CSS; the cloud will be composed of a div, inside of which there will be a span to represent a shadow generated by it.