EDIT:

Nope. Ignore this. The space is put there by browser.


This is a HTML snippet from my application:

    Correct answers: 
    0 / 6<br /><br />
    You have failed to pass the final test.

    <a href="/module/controller/course/id/5" class="accessible-link">
        Click here
    </a> 
    to return to the training.

As you can see, there is a single space after the closing tag. Yet in the browser the space is added inside the anchor. So it looks like this:

alt text

This is the PHP code which produces the HTML:

<?php if (isset($this->correctAnswersCount) && isset($this->answersCount)): ?>
        <?php echo Zend_Registry::get('translate')->_('Počet správnych odpovedí'); ?>: 
        <?php echo ToHtml($this->correctAnswersCount); ?> / <?php echo ToHtml($this->answersCount); ?><br /><br />
<?php endif; ?>
        <?php echo Zend_Registry::get('translate')->_('Záverečný test sa vám nepodarilo úspešne absolvovať.'), "\n"; ?> 
        <a href="<?php echo ToHtml($this->backToCourseUri); ?>" class="accessible-link">
            <?php echo Zend_Registry::get('translate')->_('Kliknite'), "\n"; ?>
        </a> 
        <?php echo Zend_Registry::get('translate')->_('pre návrat do kurzu.'), "\n"; ?>

I am completely buffled by this and cannot figure out what's causing this even though I've been staring into the code for 30 minutes now.

This is a relavant part from the translation file:

'Kliknite' => 'Click here',

As you can see, there should be no space added by Zend_Translate.

link|improve this question

Try HTML5, not XHTML. Albeit underlining the space within the <a> is standard behaviour for many browsers. – mario Dec 8 '10 at 13:09
@mario there is no space. The linebreak and tabstop is just rendered as one. And I doubt it won't be there in HTML5 (which is tag soup anyway). – Gordon Dec 8 '10 at 13:13
@mario I know that. But there is no space between <a> and </a>. The space is after the closing </a> tag. – Richard Knop Dec 8 '10 at 13:17
Well actually, if you send xhtml without the correct mime type it's just tag soup to most browsers (trailing slashes are garbage). And html5 happens to define exactly such edge cases better. – mario Dec 8 '10 at 13:32
1  
It's not a problem to send XHTML with proper mime type. The only problematic browser is IE but IE9 is supposed to support XHTML so that should be solved soon. – Richard Knop Dec 8 '10 at 13:35
show 2 more comments
feedback

4 Answers

up vote 2 down vote accepted

Change this:

<a href="<?php echo ToHtml($this->backToCourseUri); ?>" class="accessible-link">
    <?php echo Zend_Registry::get('translate')->_('Kliknite'), "\n"; ?>
</a>

Into this:

<a href="<?php echo ToHtml($this->backToCourseUri); ?>" class="accessible-link">
    <?php echo Zend_Registry::get('translate')->_('Kliknite'), "\n"; ?></a>

The </a> should be in the same line after the <?php echo Zend_Registry::get('translate')->_('Kliknite'), "\n"; ?> aka Click Here

EDIT:

The new line and the spaces after it renders like 1 space that is still inside de <a></a> tags, that is where the blank space is coming from.

EDIT2:

For the record I also don't like the closing tag to be next to the content instead of a being in a new line but that's how it has to be done in order to work correctly.

I like good formatted code and I always look for a autoformat command in my IDE.

But at least for example in Visual Studio when you hit Ctrl + K, Ctrl + D (the Format Document shorcut) the closing tags like the </a> are not automatically moved to a new line for this exact reason: that it should not break the way it looks before the auto format.

link|improve this answer
Yes, it works like that. But I would like to have opening tag, anchor and closing tag on separate lines in order to have cleaner HTML templates. – Richard Knop Dec 8 '10 at 13:17
But you can't do it that way since YOU are the one that is putting the extra space in your code. The whitespaces ( the new line and the spaces after it) all become into one single space that is still inside the <a></a> tags. That's just how HTML works man – Carlos Muñoz Dec 8 '10 at 13:30
@Carlos actually it's the browsers that falsely put it there. w3.org/TR/html401/appendix/notes.html#notes-line-breaks is clear on how this should be rendered. The issue is, due to indenting, there is also a tabstop between the linebreak and the closing element. In theory putting the closing a without indenting should fix that, but it doesnt (at least not in IE8 and FF3) – Gordon Dec 8 '10 at 13:34
@Gordon Thanks for the link. – Richard Knop Dec 8 '10 at 13:36
@Richard you're welcome. Google a bit for whitespace bugs in browsers. I am sure you will come across this one, too. – Gordon Dec 8 '10 at 13:38
show 2 more comments
feedback

Close the 'a' tag directly after the next, without a newline, like this:

<a href="/module/controller/course/id/5" class="accessible-link">Click here</a>
link|improve this answer
Yes, it works like that. But I would like to have opening tag, anchor and closing tag on separate lines in order to have cleaner HTML templates. – Richard Knop Dec 8 '10 at 13:18
1  
Which is where the space is coming from. The browser is confused by the whitespace and there is nothing you can do to clear it up. – DampeS8N Dec 8 '10 at 13:22
feedback

put &nbsp; immediately after the </a> tag

link|improve this answer
Does not work. There still will be one more space. – Richard Knop Dec 8 '10 at 13:20
feedback

Just wondering, can you try like this?

<a href="/module/controller/course/id/5" class="accessible-link">Click here</a> 

Not sure if this will work, but worth trying.

link|improve this answer
Yes, it works like that. But I would like to have opening tag, anchor and closing tag on separate lines in order to have cleaner HTML templates. – Richard Knop Dec 8 '10 at 13:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.