i am facing font type issue in text area, text area font is not inheriting the font which i have defined in my body. textarea is displaying different font text and make the screen looks odd
body {
font-family: "Times New Roman", Times, serif;
width: 100%;
height: 100%;
margin: 0%;
padding: 0%;
}
i have tried adding below css
textarea {
font-family: inherit;
font-size: inherit;
}
but doesnt work for me. even inline style doesnt worked.
Text that sits here and is not changed!!