Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以动态更改padding涉及textarea边界半径的时间?请参阅下面的小提琴中文本区域角落处的文本被剪辑。
padding
textarea
http://jsfiddle.net/fNyHs/462/
想法是得到一个椭圆形的文本框。
尝试这个:
$(function(){ $(".textfill.little").textfill(); $(".textfill.much").textfill(0, 11); if($(".textfill").css("border-radius")=="120px") { $(".textfill").css("padding","20px"); } });
http://jsfiddle.net/fNyHs/463/