Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6696097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:18:02+00:00 2026-05-26T06:18:02+00:00

Is there a CSS property that tells the browser to word-wrap at any position,

  • 0

Is there a CSS property that tells the browser to word-wrap at any position, not only at word boundaries?

My current issue is this. I am faced with HTML similar to this: (I cannot change the HTML, unfortunately)

<div id='categories'>Categories:
    <ul>
        <li>Category One</li>
        <li>Category Two</li>
        <li>Category Three</li>
    </ul>
</div>

I want it to display in a flowing manner according to the width of the viewport:

Categories:  • Category One  • Category Two   • Category Three
|----------------------------------------------------------------| (viewport)

Categories:  • Category One  • Category Two
• Category Three
|----------------------------------------------| (viewport width)

Categories:  • Category One
• Category Two   • Category Three
|----------------------------------| (viewport width)

… but NOT word-breaking within a category name.

So I tried this:

 #categories ul {
  display: inline;
 }
 #categories li {
  display: inline;
  padding: 0 1em;
  white-space: nowrap;
 }
 #categories li:before {
  content: '• ';
 }

Unfortunately this causes them all to run in one line. So I need to be able to tell the ul to allow wrapping anywhere between any adjacent lis. How do I do that?

I need a CSS-only solution; I cannot change the HTML…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T06:18:03+00:00Added an answer on May 26, 2026 at 6:18 am

    A useful trick for wrapping boxes is to make them all float: left. If I do this to your example, then I get the layout you want except for “Categories:” being pushed to the right. Unfortunately, I don’t know of a way to select the text so as to make it floated.

    We can use content to re-insert “Categories:” as one of the floated boxes, which leaves the problem of how to hide the existing “Categories:” text without hiding the other contents of #categories. The cleanest way I thought of was to make it transparent. However, this is a CSS3 feature; also, this loses any inherited color due to the need to explicitly set it on the ul.

    This stylesheet produces everything you want, but needs some tweaking for spacing.

    #categories {
     color: transparent;
    }
    #categories ul {
     color: black;
    }
    #categories li {
     display: inline;
     float: left;
     padding: 0 1em;
     white-space: nowrap;
    }
    #categories li:before {
     content: '• ';
    }
    #categories li:first-child:before {
     content: 'Categories: • ';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any CSS hack to target just browsers that do not support the
I'm trying to figure out if there is a css property (or any other
Is there any CSS grid system that supports full viewport width? Most Grid System
Is there a font or CSS property that would give every character the same
Is there is a way to intercept/monitor in Javascript that CSS property changed using
Is there some CSS property or something that I can use with my anchor
Is there a way to specify a CSS property is skipped in the shorthand,
Is there a way to automatically add a CSS-property, like letter-spacing, to every number
Is there a way to detect if the display css property of an element
On Firebug, when inspecting an element, is there a way to Auto-complete CSS property

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.