# CustomTextArea
Open me!
Demo View | Source Code (opens new window) | Download all widgets
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Custom text area</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../core/lib/jquery-1.6.2.min.js"></script>
</head>
<body>
<h1>Custom text area</h1>
<div class="content">
<textarea class="textarea" rows="5" title="Some Text">Some Text</textarea>
</div>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.textarea {
background: url("../core/images/textarea.png") no-repeat;
width: 283px;
height: 90px;
font-size: 14px;
font-family: Arial;
border: 0;
padding: 5px;
resize: none;
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
// Make sure to add code blocks to your code group