如何在不剪切文本内部的情况下调整按钮大小

时间:2014-08-04 18:18:25

标签: html css

我正在尝试设置按钮的样式,但是当我尝试通过高度或宽度属性调整其大小时,它会不断切割文本内部。我也试过使用填充物,但我没有运气。

以下是我的问题的一些照片

enter image description here

我希望蓝色区域的高度更小,并且" x"在广场中心。

enter image description here

上面的css代码是

.delete {
 cursor: pointer !important;
 font-size: 42px;
 position: absolute;
 color: gray;   
 height: 50px;
}

enter image description here

这个的css代码是

.delete {
 cursor: pointer !important;
 font-size: 42px;
 position: absolute;
 color: gray;   
 height: 30px;
}

如何设置按钮的样式以使其移动" x"按照我想要的方式发短信?

这是我的HTML

<button type="button" class="delete" ng-click="deleteModel(model)">
      <span>&times;</span>
      <span class="sr-only">Delete</span>
</button>

3 个答案:

答案 0 :(得分:2)

尝试使用line-height

line-height:25px;

您可能需要使用该值。 25px看起来很适合您的代码。

http://jsfiddle.net/686s8/

答案 1 :(得分:1)

试试这个css:

.delete {
cursor: pointer !important;
position: absolute;
color: gray;   
height: 36px;
}
.delete span{
font-size:28px;
}

它可能对你有帮助!!!

答案 2 :(得分:0)

在这里,您需要减小字体的大小,因为这是一个字符而不是图像。

尝试:

 font-size: 25px; 

http://jsfiddle.net/3Yq8P/