[CSS] hack(?) !IE und ohne class=""

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • [CSS] hack(?) !IE und ohne class=""

    wenn ich ein input-feld vom typ text habe, wie kann ich dort und nur dort z.b. die border-eigenschaft drauf legen, ohne dass ich mit class="" arbeite.

    ich will also nicht schreiben ...
    Code:
    <input type="text" name="feld1" class="text">
    sondern nur ...
    Code:
    <input type="text" name="feld1">
    das ganze soll sich aber nur auf type="text" beziehen. type="submit" sollte davon nichts mitbekommen.

    ob der IE das kann oder nicht spielt keine rolle. denn das ist der zweite teil. ich will den IE davon ausklammern.

    das css sollte nur für alle anderen browser funktionieren. ;-)

    wahsaga ... wo bist du?
    INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |



  • #2
    http://de.selfhtml.org/navigation/cs...ntrale_formate

    Stichwort: Attributbedingte
    Formate

    Und das kann der IE wirklich nicht, weil das CSS 2.0 ist

    Kommentar


    • #3
      danke. damit klappt es wunderbar. ;-)

      Code:
      input[type="text"] {
          border: 1px solid #f00;
      }
      INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


      Kommentar


      • #4
        hab hier noch was gefunden ....
        http://www.squarefree.com/userstyles/
        INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


        Kommentar

        Lädt...
        X