Results 1 to 1 of 1

Thread: Horizontal (overflowed) text should come on the next line..

  1. #1
    Join Date
    Oct 2008
    Posts
    40
    Thanks
    3
    Thanked 1 Time in 1 Post

    Smile Horizontal (overflowed) text should come on the next line..

    Hello,

    i have crated a div. In this div i don't want horizontal scroll bar. I want to display horizontal overflow text on the next line ................

    If i hidden horizontal scroll then it is not showing me contain which gets overflowed.
    I want that contain to be shown on next line ...............

    Suppose i have entered "asssssssssssssssssssssssssssssssssssssssssssssdddddddddddddddddddddddddddddddddddddddaaaaaaassssssssssssssssssssssssssss"
    (do not use the space ..)

    here is the code ......................
    please tell me

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <style>
    .class-div
    {
    	overflow-y: auto; 
    	overflow-x: hidden;
    }
    </style>
    <script type="text/javascript">
    function openDiv()
    {
    	var newDiv = document.createElement('div'), s = newDiv.style;
    	newDiv.setAttribute('id',"divEntry");
    	newDiv.className="class-div";
    	s.border = '1px solid gray';
    	s.color = '#ccc';
    	s.width = '200px';
    	s.height = '200px';
    	s.backgroundColor = '#488be8';
    	s.top = '200px';
    	s.left = '200px';
    	s.position = 'fixed';
    	document.body.appendChild(newDiv);	
    };
    function entervalue(evt)
    {
    
    	var charCode = (evt.which) ? evt.which : window.event.keyCode;
    	
    	if(charCode==13)
    	{
    		document.getElementById("divEntry").innerHTML+=document.getElementById("txtEnter").value+"<br>";
    		document.getElementById("txtEnter").value="";
    	}
    
    }
    onload=openDiv;
    </script>
    </head>
    <body>
    <!--<input type="button" value="click me to create Div in Right frame" onclick="return openDiv(100,100);">-->
    <input type="text" id="txtEnter" onkeypress="entervalue(event)"> enter a value in this text box and press Enter
    </body>
    </html>
    Last edited by pankaj.ghadge; 11-05-2008 at 07:47 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •