Forum How do I...?

Text-overflow

JorenWillems
Hi, I have to divs (c1 and c1header) with text. I use 2 divs because the text must be aligned to the bottom of the div. Now I want that the text in this div cant go out the div height. I use text-overflow but my text wil go out of the divborders...

#c1
    {
        position:absolute;
        bottom:0;
        font-family:helveticaReg;  
    }
    
    
    #c1header
    {
        position:relative;
        margin-left:10.7cm;
        margin-top:1.4cm;
        width:8.5cm;
        height:6.3cm;
        font-weight:bold;
        text-overflow: ellipsis;  
    } 


 <div id="c1header">
            <div id="c1" runat="server"></div>
  </div>
mikeday
We don't support the text-overflow property, but you can use "overflow: hidden".