> For the complete documentation index, see [llms.txt](https://andrearufo.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andrearufo.gitbook.io/notes/design-and-css/immagini-responsive.md).

# Immagini responsive

Il più semplice codice per rendere delle immagini responsive è questo:

```css
img{
    max-width: 100%;
    height: auto;
}
```
