Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > HTML
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

HTML HTML problems, maybe you are trying to code for MySpace. Get all the HTML coding help here for your website.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 1:23 PM   #1
Augustus
 
Augustus's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "Soft" hyphens


<FatBlokeOnBikepins@pinsmother-truckers.co.uk> wrote in message
news:qq2ffvcdebkolm2bgf1k98nsv0ctajmi7b@4ax.com...
> .
> Is there a way to have "soft" hyphens or "soft" spaces in lines of text,

lines which may
> have to break, depending on the width available? (By "soft" I mean a

space or hyphen
> which disappears when not needed.)
>
> Example:
> Line of text:
> "informative/encouraging/discouraging/travelling/whatever"
>
> when what would be better is:
> "informative/encouraging/discouraging/travelling/
> whatever"


A kind of bandaid approach would be to put a span in there with a space and
width set to 0...

ie:

informative/encouraging/discouraging/<span style='width:0;'>
</span>travelling/whatever

The blank space won't show up (due to width) and it should break on the
blank space still




 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 07-01-2007, 1:24 PM   #2
Jukka K. Korpela
 
Jukka K. Korpela's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "Soft" hyphens

"Augustus" <Imperial.Palace@Rome.It> wrote:

> <span style='width:0;'>


All correctly behaving browsers will ignore the style sheet.

If you're about to play some tricks, using spaces but trying to make
them look narrow or nonexistent, the word-spacing property (for which
negative values are allowed) might be a better deck of cards.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:26 PM   #3
Anonymous Joe
 
Anonymous Joe's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "Soft" hyphens

"Jukka K. Korpela" <jkorpela@cs.tut.fi> wrote in message
news:Xns93A49191F4973jkorpelacstutfi@193.229.0.31. ..
> "Augustus" <Imperial.Palace@Rome.It> wrote:
>
> > <span style='width:0;'>

>
> All correctly behaving browsers will ignore the style sheet.
>
> If you're about to play some tricks, using spaces but trying to make
> them look narrow or nonexistent, the word-spacing property (for which
> negative values are allowed) might be a better deck of cards.
>
> --
> Yucca, http://www.cs.tut.fi/~jkorpela/
> Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html


If you set the justification to 'justify' instead of the default 'left' then
it should send it to it's own line after it gets too big. Not sure if it
will also scrunch the text to fit into it's container or just wrap
around....i've never had a reason to find out.


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:26 PM   #4
Jukka K. Korpela
 
Jukka K. Korpela's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "Soft" hyphens

"Anonymous Joe" <no@spam.please> wrote:

> "Jukka K. Korpela" <jkorpela@cs.tut.fi> wrote in message
> news:Xns93A49191F4973jkorpelacstutfi@193.229.0.31. ..
>> "Augustus" <Imperial.Palace@Rome.It> wrote:
>>
>> > <span style='width:0;'>

>>
>> All correctly behaving browsers will ignore the style sheet.
>>
>> If you're about to play some tricks, using spaces but trying to
>> make them look narrow or nonexistent, the word-spacing property
>> (for which negative values are allowed) might be a better deck of
>> cards.
>>
>> --
>> Yucca, http://www.cs.tut.fi/~jkorpela/
>> Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

>
> If you set the justification to 'justify' instead of the default
> 'left' then it should send it to it's own line after it gets too
> big.


You quoted my message comprehensively, including the sig, and failed to
specify which part thereof you comment on. Actually your comments
don't seem to have any connection with my message, and you used the
word "it" four times, all of which raise the question what is
"it" this time. Please keep that style and your forged From field until
your messages will be worth reading and commenting on. More hints:
http://www.cs.tut.fi/~jkorpela/usenet/dont.html

Regarding 'justify', which you seem to be thoroughly confused with, see
http://www.cs.tut.fi/~jkorpela/www/justify.html

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 1:40 PM   #5
Anonymous Joe
 
Anonymous Joe's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "Soft" hyphens

"Jukka K. Korpela" <jkorpela@cs.tut.fi> wrote in message
news:Xns93A571EB26734jkorpelacstutfi@193.229.0.31. ..
> "Anonymous Joe" <no@spam.please> wrote:
>
> > "Jukka K. Korpela" <jkorpela@cs.tut.fi> wrote in message
> > news:Xns93A49191F4973jkorpelacstutfi@193.229.0.31. ..
> >> "Augustus" <Imperial.Palace@Rome.It> wrote:
> >>
> >> > <span style='width:0;'>
> >>
> >> All correctly behaving browsers will ignore the style sheet.
> >>
> >> If you're about to play some tricks, using spaces but trying to
> >> make them look narrow or nonexistent, the word-spacing property
> >> (for which negative values are allowed) might be a better deck of
> >> cards.
> >>
> >> --
> >> Yucca, http://www.cs.tut.fi/~jkorpela/
> >> Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

> >
> > If you set the justification to 'justify' instead of the default
> > 'left' then it should send it to it's own line after it gets too
> > big.

>
> You quoted my message comprehensively, including the sig, and failed to
> specify which part thereof you comment on. Actually your comments
> don't seem to have any connection with my message, and you used the
> word "it" four times, all of which raise the question what is
> "it" this time. Please keep that style and your forged From field until
> your messages will be worth reading and commenting on. More hints:
> http://www.cs.tut.fi/~jkorpela/usenet/dont.html
>
> Regarding 'justify', which you seem to be thoroughly confused with, see
> http://www.cs.tut.fi/~jkorpela/www/justify.html
>
> --
> Yucca, http://www.cs.tut.fi/~jkorpela/
> Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html


I am forever in your debt, for this it will be necessary to allow it to
change it, etc it...

Nah, I get what you mean, but you can be more polite about it, I mean you
pretty much outright flamed me here...


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
"Soft" hyphens Jukka K. Korpela HTML 0 07-01-2007 1:23 PM
"Soft" hyphens spaghetti HTML 0 07-01-2007 1:23 PM
Play "FREE" Casino Games and WIN "Real Cash" at GOCG! Affiliate Manager Affiliate Programs 0 06-12-2007 7:58 PM
"""*" FREE internet moneymaker """*" Dave Building An Internet Business 0 06-11-2007 12:18 AM
some shortcut keys not working anymore-----help"""""""" Kadaitcha Man Windows 1 05-28-2007 11:28 PM


Featured Websites




All times are GMT +1. The time now is 12:15 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98