[HTML] overflow hidden

Dieses Thema im Forum "Webentwicklung" wurde erstellt von Reaperchef, 18. Mai 2008 .

Schlagworte:
Status des Themas:
Es sind keine weiteren Antworten möglich.
  1. 18. Mai 2008
    overflow hidden

    Moin,

    ich steig da echt nicht durch... ich weiß nicht was da falsch sein sollte..
    In dem Textfeld, soll kein Scrollbar mehr sein, wenn der Text über den Rand hinaus geht.

    PHP:
    <! DOCTYPE html  PUBLIC  "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
    <
    html xmlns = "http://www.w3.org/1999/xhtml" >
    <
    head >
    <
    meta http - equiv = "Content-Type"  content = "text/html; charset=utf-8"  />
    <
    title > Unbenanntes Dokument </ title >
    <
    style type = "text/css" >
    <!--
    body  {
        
    overflow - x : hidden ;
        
    overflow - y : hidden ;
        
    background : blue ;
    }
    -->
    </
    style >
    </
    head >
    <
    body >
    <
    textarea name = "textarea"  id = "textarea"  cols = "45"  rows = "10" >
    </
    textarea >
    </
    body >
    </
    html >
    Weiß jemand ne Lösung?
    BW ist klar.

    MFG Reaper
     
  2. 18. Mai 2008
    AW: overflow hidden

    probier mal "Hidden" also H groß ..

    aber sonst würd mir auch nichts mehr einfallen
     
  3. 18. Mai 2008
    AW: overflow hidden

    Nope, hat sich nichts geändert....


    Achja, Broswer: Mozilla Firefox
     
  4. 18. Mai 2008
    AW: overflow hidden

    wenn dann musst du der textarea das overflow:hidden; geben und nicht dem body bereich!
    zb.:
    textarea { border: 1px solid black; overflow:hidden; width: 50px; height: 50px; }

    kA obs so klappt^^
    Aber den body zu formatieren bringt dir nix! nur die textarea
     
  5. 18. Mai 2008
    AW: overflow hidden

    jo des hab ich auch grad ausprobiert, also so muss dann ausschaun:

    HTML:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Unbenanntes Dokument</title>
    <style type="text/css">
    <!--
    body {
    
     background:blue;
    }
    textarea {
     overflow-x:hidden;
     overflow-y:hidden;
    }
    -->
    </style>
    </head>
    <body>
    <textarea name="textarea" id="textarea" cols="45" rows="10">
    </textarea>
    </body>
    </html> 
     
  6. 18. Mai 2008
    AW: overflow hidden

    aber wenn man x und y hidden will, reicht es doch auch aus nur overflow:hidden zuschreiben!
    oder irre ich mich da?
     
  7. 18. Mai 2008
    AW: overflow hidden

    Ne, haste Recht!
    Vielen Dank, euch allen, BW's sind raus.

    MFG Reaperchef
     
  8. Video Script

    Videos zum Themenbereich

    * gefundene Videos auf YouTube, anhand der Überschrift.