|
|
#3 (页面定位) |
![]() 注册日期: 2005-12-01
帖子: 37
![]() |
我是标准版,帖子块模板里没有 <div id="posts">,那个 id 是动态变化的,如下:
HTML 代码:
<div id="post_message_$post[postid]" style="overflow-x: hidden;">$post[message]</div> 正好,我当时为了把签名压到帖子底部,加了一个 div 来包含 message 块,我把这个 div 加了个 id,然后在附加 CSS 里把这个 id 赋予相应属性解决。 |
|
|
|
|
|
#4 (页面定位) |
![]() 注册日期: 2005-12-01
帖子: 37
![]() |
改进了一下, 删除了原来的 div, 加了一个 class
HTML 代码:
<div id="post_message_$post[postid]" style="overflow-x: hidden;">$post[message]</div> HTML 代码:
<div id="post_message_$post[postid]" class="aaa" style="overflow-x: hidden;">$post[message]</div> 代码:
.aaa a:link{text-decoration:underline}
...
.aaa a:hover{.....}
...
|
|
|
|