Incorrect padding - bug?
Incorrect padding - bug?
With the following code I've noticed a large amount of bottom padding
on the div that's generated to hold the text area. So much so that the
handle is no where near close to the bottom of the text area. This
seems very much like a bug to me. Anyone care to comment?
Code:
<html>
<head>
<link type="text/css" href="css/smoothness/ui.all.css"
rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.2.6.min.js"></
script>
<script type="text/javascript" src="js/ui.core.js"></script>
<script type="text/javascript" src="js/ui.resizable.js"></script>
<script type="text/javascript">
$(function() {
$("#resizeme").resizable({handles: 's'});
});
</script>
</head>
<body>
<table>
<tr>
<td>
<textarea id = "resizeme" style="border: 2px solid red;">
</textarea>
</td>
</tr>
</table>
</body>
</html>