Posted by Stefan Mueller on 11/13/05 23:55
I'd like to write my html code in a structured way.
Therefore I don't like to write
Please click here: (<a href = "next.html">link</a>)
--> Output: Please click here: (link)
I prefer
Please click here: (
<a href = "next.html">
link
</a>
)
--> Output: Please click here: ( link )
Unfortunately in the second version I do have a space before and after the
word 'link'.
Does someone know if there's a tag or something like that to tell the
browser not to add a space?
Stefan
PS: This is only a simplified example which shows my problem. My real 'a
href' has many lines like onMouseover, onMouseout, ...
Navigation:
[Reply to this message]
|