3

一行代码包含几个超链接,我希望输出为单行,但它不起作用。

我也用过css

           a {white-space:nowrap; }        it doesn't work.

代码行是:

<a href="profile.php?v=<?php echo $uid;?>"><?php echo $uname;?></a>made offer for your task:<a href="task1.php?t=<?php echo $task_id;?>"><?php echo $tasktitle;?></a>says,"<?php echo $comment; ?>"<br/>

我得到的输出:

                    David Jackson 

                    made offer for your task:

                    paint on walls

                    says,"hello..i'm agree!"

我预期的输出:

 David Jackson made offer for your task: paint on walls says,"hello..i'm agree!"
4

4 回答 4

4

看起来你有a{display:block}

将其更改为:

a { display:inline }

于 2013-10-09T09:35:08.980 回答
1

不,它不强制锚标签会断线,它也取决于编辑器,如果这也不起作用,所以使用这个

一个{显示:内联}。

于 2015-05-25T06:21:36.200 回答
0

Because the < a > < / a > standard value is

"display:block;"

you should try

a {display:inline}
于 2013-10-09T09:35:05.230 回答
0

尝试使用: a{ display:inline !important} 并检查。

这将覆盖锚标记 () 的其他 css 规则。

于 2013-10-09T10:59:13.627 回答