Using Tailwind CSS
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link href="tailwind.css" rel="stylesheet">
</head>
<body>
<p>With TailwindCss before<img src='at.png'>after.com</p>
</body>
</html>
Produces:
with the link removed:
<link href="tailwind.css" rel="stylesheet">
it produces:
What is needed to get the Tailwind CSS version to match the original where the text and image are on the same line?


imgtags ... and allsvg,video,canvas,audio,iframe,embed, andobjecttags ... to bedisplay:block. You can find the code innode_modules/tailwindcss/src/css/preflight.css. – machineghost Oct 15 '23 at 21:47