Answers for "italicise in css"

CSS
1

css how to make something italized

.classname{
	font-style: italic;
}
Posted by: Guest on January-05-2021
0

css how to make text italic

<style>
#italic{
  font-style: italic;
  } </style> <p id="italic">This is my italic text. :)</p>
Posted by: Guest on August-17-2020

Browse Popular Code Answers by Language