Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I insert non breaking space character   in a JSF page?

Tags:

jsf

facelets

How do I insert a non breaking space character in JSF page like I can in HTML using  ? Is there such a tag in JSF?

like image 748
Suresh Avatar asked Aug 31 '09 07:08

Suresh


People also ask

How do you insert a non-breaking space in a string?

The   character entity prevents this from happening. When you insert the   character between such words, it will render a space and will never let any of the words break into a new line.

Where is the non-breaking space in word?

Select Ctrl + Shift + Space on your keyboard to insert the nonbreaking space.

How do you insert a nonbreaking space in HTML?

HTML Non-Breaking Space ( ) The simplest way to add a space in HTML (besides hitting the spacebar) is with the non-breaking space entity, written as   or  .

How do you insert a nonbreaking space in PowerPoint?

How to make a non-breaking (or fixed) space in PowerPoint? To insert a fixed space in MS PowerPoint, you need to insert the appropriate character. This is done simply using the abbreviation alt+0160.


1 Answers

this will work

<h:outputText value="&#160;" /> 
like image 196
Madhu Avatar answered Sep 20 '22 13:09

Madhu