Most browsers have built-in drag and drop support for different page elements like text and images. While this may...

The attached compiler() function below applies JavaScript behavior to matching HTML elements as they enter the DOM. This works like...

makandra dev

The need for clearfix hacks has been greatly reduced since we could layout with Flexbox or CSS Grid.

You can scale background images in CSS to the container size using background-size (Demo). Commonly, we use contain or...

When using custom properties in your stylesheets, you may want to set a specific property value to an existing variable...

After switching a project from Sprockets to Webpack, I started observing a bug that was hard to debug: Our...

makandra dev

Webpack builds can take a long time, so we only want to compile when needed. This card shows what will...

makandra dev
web.archive.org

The attached article examines what the percent unit (%) is relative to in CSS The article does a great job of...

When you have a hex color code, you can easily convert it into its RGB values using plain Ruby.

getbootstrap.com

Recently I made an upgrade from Bootstrap 3 to Bootstrap 4 in a bigger project. Here are some tips how...

makandra dev

Rails 6 includes a WYSIWYG editor, Action Text. It works out of the box quite well, but chances are that...

Rails supports alert and notice as default flash types. This allows you to use these keys as options in e.g...

makandra dev

Feature Queries (Edge 12+): Similar to @media queries, @supports blocks can be scoped to browsers that support a given declaration...

makandra dev

This card is mainly an explanation how variable fonts work in CSS, not necessarily a recommendation to actually use them...

makandra dev
thoughtbot.com

The linked article compares two approaches for writing CSS: A component library (like BEM) Utility classes (like Tailwind)

CSS variables are very different from preprocessor variables. While preprocessors use variables to compile a static piece of CSS, CSS...

makandra dev
developers.google.com

Chrome has a built-in utility to check performance and accessibility (and more) of your web app: Lighthouse.

makandra dev

We structure our CSS using the BEM pattern. Our naming convention for blocks, elements and modifiers has evolved over the...

CSP hat zum Ziel einen Browser-seitigen Mechanismus zu schaffen um einige Angriffe auf Webseiten zu verhindern, hauptsächlich XSS...

CSS selectors are a very simple tool to select elements from a Nokogiri document. However, the colon in the XML...

To make CSS rules dependent on the screen size, we use media queries: @media (max-width: 500px) { // rules for screen...

You can use the CSS property mask-image to define an "alpha channel" for an element. E.g. to let an...

Browsers come with a set of built-in elements like or . When we need a new component not covered by...

So I had the issue that User input (coming from many different sources and users) often contains the...