如何将文本放在按钮的底部?

时间:2012-08-05 13:32:15

标签: jquery mobile button jquery-mobile alignment

我查找/搜索了对齐,位置(等)

见图:

enter image description here

4 个答案:

答案 0 :(得分:0)

类似的东西:

input
{
display: block;
padding-top: 300px;
}

它应该有用。

示例:http://jsfiddle.net/bkePe/1/

答案 1 :(得分:0)

你看过布局了吗?创建一个容器并在其上堆叠一个按钮和一个标签。

http://layout.jquery-dev.net/documentation.cfm#Properties_Methods

答案 2 :(得分:0)

如何使用内置定位?

data-iconpos="top"

来源:http://jquerymobile.com/test/docs/buttons/buttons-icons.html

答案 3 :(得分:0)

好的,让它运转起来:

<head>
<style type="text/css">
<!--
a{
    line-height: 500px; 
    text-align:buttom;

}
-->   
        </style>
   </head>
  <body>
<a data-corners="false" href="index.html" data-role="button" data-icon="delete"
          data-iconpos="top" data-theme="a">LIVINGROOM</a> 
     </body>
</html>

注意: line-height:500px;因为我的按钮比标准大。