Questions tagged «center»

HTML中的center标签导致其内容位于父元素内。不推荐使用,不应再使用。

8
Android:如何在中心点上旋转位图
我一直在寻找解决此问题的解决方案,但无济于事,甚至没有找到答案。文档也没有解释任何东西。 我只是试图使旋转方向朝另一个对象的方向。问题在于位图不是围绕固定点旋转,而是围绕位图(0,0)旋转。 这是我遇到麻烦的代码: Matrix mtx = new Matrix(); mtx.reset(); mtx.preTranslate(-centerX, -centerY); mtx.setRotate((float)direction, -centerX, -centerY); mtx.postTranslate(pivotX, pivotY); Bitmap rotatedBMP = Bitmap.createBitmap(bitmap, 0, 0, spriteWidth, spriteHeight, mtx, true); this.bitmap = rotatedBMP; 奇怪的是,无论如何更改pre/中的值postTranslate()以及中的float参数,都没有关系setRotation()。有人可以帮忙,把我推向正确的方向吗?:)

8
CSS:居中,但将内容向左对齐
我希望整个块都以其父对象为中心,但是我希望该块的内容保持对齐。 例子最好 在本页 : http://yaml-online-parser.appspot.com/?yaml=%23+ASCII+Art%0d%0a---+%7c%0d%0a++%5c%2f%2f%7c%7c%5c% 2f%7c%7c%0d%0a ++%2f%2f +%7c%7c ++%7c%7c __%0d%0a&type = python ascii艺术应居中(如显示),但应对齐并看起来像“ YAML”。 或这个 : http://yaml-online-parser.appspot.com/?yaml=%3f+-+Detroit+Tigers%0d%0a++-+Chicago+cubs%0d%0a%3a%0d%0a++-+2001-07-23 %0d%0a%0d%0a%3f +%5b + New + York + Yankees%2c%0d%0a ++++ Atlanta + Braves +%5d%0d%0a%3a +%5b + 2001-07-02%2c + 2001-08-12%2c%0d%0a ++++ 2001-08-14 +%5d%0d%0a 该错误消息应该像在控制台中一样全部对齐。
81 css  alignment  center 

6
如何使用CSS将表格放在页面中心?
我正在使用以下代码。如何使用CSS将此表格放在页面中心? <html> <head> <link rel="stylesheet" type="text/css" href="styles.css" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>The Main Page</title> </head> <body> <table> <tr> <td><button class="lightSquare"></button></td> <td><button class="darkSquare"></button></td> <td><button class="lightSquare"></button></td> <td><button class="darkSquare"></button></td> <td><button class="lightSquare"></button></td> <td><button class="darkSquare"></button></td> <td><button class="lightSquare"></button></td> <td><button class="darkSquare"></button></td> </tr> </table> </body> </html>
80 html  css  html-table  center 

8
中心表单提交按钮HTML / CSS
我在将CSS表单的HTML表单提交按钮居中时遇到麻烦。 现在我正在使用: <input value="Search" title="Search" type="submit" id="btn_s"> <input value="I'm Feeling Lucky" title="I'm Feeling Lucky" name="lucky" type="submit" id="btn_i"> 这个CSS内容 #btn_s{ width: 100px; margin-left: auto; margin-right: auto; } #btn_i { width: 125px; margin-left: auto; margin-right: auto; } 而且它什么也没做。我知道我可能在做一些愚蠢的错误。我怎样才能解决这个问题?
75 html  css  center  alignment 

8
溢出文字可以居中吗?
当我指定text-align:center一个宽度大于文本宽度的元素时,文本将居中于元素的内容框中(如预期的那样)。 当我指定text-align:center宽度小于文本宽度的元素时,文本将与内容框的左边缘对齐,并溢出内容框的右边缘。 您可以在此处查看这两种情况。 任何CSS魔术都可以使文本在内容框的左边缘和右边缘均相等地溢出,从而使其居中吗?

2
如何使用CSS类在td元素内对齐div
它以这种方式工作 <td align="center"> 但是我想使用CSS类。 我这样定义班级但没有运气 td { vertical-align: middle; text-align: center; margin-left: auto; margin-right: auto; align: center; } 垂直对齐有效,文本对齐有效。但是它不能通过这种方式将td内的div对齐。我想在TD内对齐div。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.