font Family not working with Ajax HTML Editor
font Family not working with Ajax HTML Editor.. i mean i wan to apply font tahoma in htmleditor as a default. it should show content with font tahoma default.
and also i want to know for alternate of this html editor..开发者_如何学C i just want textarea which can read HTML nothing else..
Plz Help
thankss in advance
You can use CSS to style a textarea
the same as any other element:
textarea {
font: 0.9em/1.1em Tahoma, Geneva, Verdana, sans-serif;
color: #333333;
}
精彩评论