0

这是我的页面: http ://clouderize.it/demo/index.html

我会像这张图片一样设置标题: 在此处输入图像描述

我在 css 属性上做错了什么?非常感谢。

4

3 回答 3

1

将带有球的 div 放在 h1 元素之前。

于 2012-11-15T14:55:14.477 回答
1

可能的解决方案:

<div style="position: absolute;top: 5px;right: 5px;"><img style="width:30px" src="themes/images/ball.jpg"></div>

看到float:right被替换为position: absolute;top: 5px;right: 5px;

于 2012-11-15T14:57:26.270 回答
0

将图像放入 h1 元素中,在文本之前:

<h1 class="ui-title" role="heading" aria-level="1">
   <div style="float:right">
      <img src="themes/images/ball.jpg" style="width:30px">
   </div>
   0.1!
</h1>

然后像这样修复css:

.ui-header .ui-title, .ui-footer .ui-title {
    ...
    margin: 0.6em auto 0.8em;
}
于 2012-11-15T14:59:05.350 回答