Resize container to fit text - Forum

Forum Navigation
You need to log in to create posts and topics.

Resize container to fit text

How can we make a container with auto fit text?

I have set the height of text container "auto", it works only when we pressed enter-key the end of each line.

but I need something work without pressing enter-key also. (like Ms. PowerPoint Text box)

Uploaded files:
  • You need to login to have access to uploads.

@asmat I'm not sure about your question. You mean something like this?
https://css-tricks.com/fitting-text-to-a-container/

Regards.

[SOLVED] Thank you @luishp, I have found it in stackoverflow, it had need just a simple css code:

#Container{
 overflow-wrap: break-word;
}

 

luishp has reacted to this post.
luishp