是否可以在文本的背景图像中应用边框半径<input>
或<textarea>
?
问问题
1191 次
2 回答
1
该border-radius
属性适用于内联或块级元素。
input
因此,您可以在 a和 atextarea
元素上创建圆角。
但是,该border-radius
属性不会影响与元素关联的任何背景图像。
简短的回答是:不。
为了说明,如果您有以下 HTML:
<textarea class="ex1" name="theText" >Example 1</textarea>
并应用以下 CSS:
textarea.ex1 {
border-width: 0;
border-radius: 10px;
background-color: beige;
padding: 5px;
width: 200px;
height: 200px;
}
textarea.ex2 {
border-width: 0;
border-radius: 10px;
background: lightgray url(http://placekitten.com/150/150)
center center no-repeat;
padding: 5px;
width: 200px;
height: 200px;
}
您会看到textarea
元素具有圆角,但圆角不会影响背景图像。
通过使用额外同级元素的绝对定位可以解决变通方法,但这超出了您的问题范围。
于 2013-09-21T19:00:15.413 回答
-1
于 2013-09-21T17:57:42.667 回答