Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS hanging-punctuation …

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #40032
    nathan05
    Member

    I am trying to attempt using the following in CSS3 … but am not sure how to implement it … since I am already using the “text-align” for the bit of text located below the menu bar at http://www.design-marq.com

    here are the two links I have found on hanging punctuation.

    http://www.w3.org/TR/css3-text/#hanging-punctuation0.
    http://coding.smashingmagazine.com/2010/03/01/css-and-the-future-of-text/

    Here is the css I have in place already

    #author-bio {
    float: right;
    margin-bottom: 15px;
    text-align: right;
    width: 27.6596%;
    }

    #110884
    Paulie_D
    Member

    Obviously the the hanging-punctuation property is not implemented in any browser as yet.

    The only thing I can think of, if you must, is to wrap the period/full stop in a span and add some negative margin-right.

    About 0.25em should be about right perhaps a bit less: http://codepen.io/Paulie-D/pen/qpGov

    #110891
    nathan05
    Member

    Paulie,

    Thanks … along with your code … here is what I have now … the only thing is when I test it in Opera12
    and I make the window smaller (not minimize) starts to flow into the image.


    #author-bio {
    float: right;
    margin-bottom: 15px;
    text-align: right;
    width: 250px;
    margin:-50px;
    padding-top: 45px;
    padding-right: 47px;
    }

    span {
    margin-right:-0.10em;
    }

    #header-banner {
    float: left;
    margin-bottom: 40px;
    width: 68.0851%;
    }

    #110892
    Paulie_D
    Member

    Sorry, I don’t use Opera. What is flowing into the image?

    Is this issue limited to Opera or is it a cross-browser issue?

    Here is something I’ve knocked up: http://codepen.io/Paulie-D/pen/zpoGf

    The span margin has been overdone so that you can see it is actually outside of the containing box.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.