i have a Background image with div, here i want to write some text, but this text should be resize the font size through the div.
|
|
I understand your question this way, you would like to fit some text into a given div with a fixed dimension, and if the div is to small, to show all the text, the font size sould be shrinked until the text fits into the div. If that's the point, here is my solution. Here is an exmaple with a jQuery implementaion: http://jsfiddle.net/MYSVL/2/ Have some div
With a fixed size
This JavaScript will do the job.
|
|||||||
|
|
You have to preload the image to get the width and height of the image. As soon as you got the dimensions you can "try" different fontsizes:
|
|||
|
|
|
I'm not completely sure I understand your question but I think what you're asking is how to fit text in a particular container of predefined size. I'll try to answer this question. Client sideWhen you want to do this on demand on the client you will have to run Javascript. The idea is to:
Server sideThere is no reliable way of setting font size on the server so it will fit your client rendered container. Unfortunately you can only approximate sizes on pretested empirical data. |
||||
|
|
|
Here is a global function with JQuery and HTML5 Data annotations to define the block size take a look: Don't ask me why I need the table :-) , the width function works best with tables... on Jquery 1.7 .. Getting no width for Divs Usage :
Function to add:
|
||||
|
|
Change "10px" to whatever you need... Or give more details if you need something more dynamic. |
||||
|
|
