Paolo Redaelli personal blog

Category: Web

The text-wrap property allows you to control how text is wrapped

* {
  text-wrap: pretty;
}
h1,h2,h3,h4,h5,h6 {
  text-wrap: balance;
  /* it works well with text-align: center */
}
 From Better text wrapping using text-wrap
app

Home Getting Started Learn More Community BlogOSv is the open-source versatile modular unikernel designed to run unmodified Linux applications securely on micro-VMs in the cloud. Built from the ground up for effortless deployment and management of micro-services and serverless apps, with superior performance.

Source: OSv – the operating system designed for the cloud

This css one liner can define how your site looks on a device with dark mode set in the browser settings.

@media (prefers-color-scheme: dark)

Or if your main style is dark mode, you can define how the light mode will look.

@media (prefers-color-scheme: light)
Source: CSS only dark mode without JS – Simon Dalvai