image not rendering in tailwind css

Solutions on MaxInterview for image not rendering in tailwind css by the best coders in the world

showing results for - "image not rendering in tailwind css"
Sergio
30 Jul 2018
1.rendering-auto { image-rendering: auto; }.rendering-crisp-edges { image-rendering: crisp-edges; }.rendering-pixelated { image-rendering: pixelated; }
Beth
24 May 2018
1// tailwind.config.js{  theme: {},  // no options to configure  variants: { // all the following default to ['responsive']    imageRendering: ['responsive'],  },  plugins: [    require('tailwindcss-image-rendering'), // no options to configure  ],}
Karl
22 Jan 2019
1# Install using pnpm pnpm install --save-dev tailwindcss-image-rendering # Install using npm npm install --save-dev tailwindcss-image-rendering # Install using yarn yarn add -D tailwindcss-image-rendering