safari disable resize textarea

You can use the CSS3 'resize' property to "specify whether or not an element is resizable by the user":


textarea
{
resize:none;
}


or you can use


textarea
{
max-width: 175px; /* RESTRICT SAFARI RESIZE */
max-height: 250px; /* RESTRICT SAFARI RESIZE */
}

Comments

Popular posts from this blog

PHP: Date Difference for PHP 5.2

HTML5 video loop src change on end play function

display the_content with setup_postdata