Academic Tutorials



English | French | Portugese | Dutch | Italian
Google

on-line

Haupt Quellenprogramme E-Bücher Downloads Mit uns in Verbindung treten Über uns

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
AJAX Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PHP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
.NET (dotnet)
Microsoft.Net
XML Web Services
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills


Wie man ein StyleSheet einsetzt
Previous Next




Um ein stylesheet einzusetzen verwenden wir drei Methoden wie folgt:

  • External Style Sheet
  • Internal Style Sheet
  • Inline Style Sheet



  • External Style Sheet

    Die Akte, die nur CSS Code enthält und mit einer „.css“ Dateiextension gespeichert wird, wird als externer CSS benannt. Mit dem <link> anstelle vom <style>, wird diese CSS Akte dann in deinem HTML bezogen. Nicht sich sorgen, wenn du konfus bist. Wir werden du durch den vollständigen Prozeß gehen.

    <html>
    <head>
    <title>My First Stylesheet</title>
    <link rel=stylesheet href="mystyles.css" type="text/css">
    </head>
    <body>
    <h1>Stylesheets: The Tool of the Web Design Gods</h1>
    <P>Friendship is always alive! Squash your enemies!</P>
    </body>
    </html>

    Eine unterschiedliche Textakte jetzt herstellen, die mystyles.css genannt wird (dich kannst es alles nennen, das du wünschst). Alles, das es enthält, ist dieses:

    h1 { color: green; font-family: impact }
    P { background: yellow; font-family: courier }
    Anmerkung:

    Wenn das gleiche Art-/Format-/Blickn Gefühl auf zahlreichen Seiten dann angefordert wird, sagen wir, daß ein externes Artblatt (CSS) vollkommen ist. Das webmaster kann den Blick des gesamten Aufstellungsortes ändern - indem es eine Akte, mit Hilfe eines externen Artblattes ändert.




    Internal Style Sheet

    Wenn ein Einzelbeleg eine einzigartige Art hat, sollte ein internes Artblatt benutzt werden. Im Hauptabschnitt indem Sie den <style> Umbau verwenden, kannst du interne Arten so definieren:

    <head>
    <style type="text/css">
    hr {color: sienna}
    p {margin-left: 20px}
    body {background-image: url("images/back40.gif")}
    </style>
    </head>
    Die Datenbanksuchroutine jetzt formatiert das Dokument und liest die Artdefinitionen entsprechend ihr.

    Anmerkung: Eine Datenbanksuchroutine ignoriert normalerweise unbekannte Umbauten. Dies heißt, daß eine alte Datenbanksuchroutine, die nicht Arten stützt, den <style> Umbau ignoriert, aber der Inhalt des <style> Umbaus wird auf der Seite angezeigt. Durch das Verstecken er im HTML Anmerkung Element: , ist es möglich, eine alte Datenbanksuchroutine am Anzeigen des Inhalts zu verhindern.

    <head>
    <style type="text/css">
    <!--
    hr {color: sienna}
    p {margin-left: 20px}
    body {background-image: url("images/back40.gif")}
    -->
    </style>
    </head>
    Inline Styles
    Inline-Arten

    Stylesheets Richtlinien nach rechts mitten in deinem ganzem HTML einsetzend, wird als Inline-stylesheet benannt. Es konnte wie dieses aussehen:

    <html>
    <head>
    <title>My First Stylesheet</title>
    </head>
    <body>
    <h1 style="color: orange; font-family: impact">Stylesheets: The Tool of the Web Design Gods</h1>
    <P style="background: yellow; font-family: courier">Amaze your friends! Squash your enemies!</P>
    </body>
    </html>



    Multiple Style Sheets
    In der unterschiedlichen Art bedeckt, wenn einige Eigenschaften für den gleichen Vorwahl eingestellt worden sind, den die Werte vom spezifischeren Artblatt übernommen werden.

    Z.B. hat ein externes Artblatt diese Eigenschaften für den Vorwahl h4:

    h4
    {
    color: blue;
    text-align: left;
    font-size: 8pt
    }
    And an internal style sheet has these properties for the h4 selector:
    h4
    {
    text-align: right;
    font-size: 20pt
    }

    If the page with the external style sheet also link to the internal style sheet then the properties for h4 will be:

    color: blue;
    text-align: right;
    font-size: 20pt

    The text-alignment and the font-size is replaced by the internal style sheet and The color is inherited from the external style sheet.




    Previous Next

    Keywors: css friendster profile editor, css codes, css tutorial, dvd region css free, css code background for friendster, free friendster background css codes, myspace css code generator, css templates, css style sheets, css layouts


    HTML Quizes
    HTML Quiz
    XHTML Quiz
    CSS Quiz
    TCP/IP Quiz
    XML Quizes
    XML Quiz
    XSL Quiz
    XSLT Quiz
    DTD Quiz
    Schema Quiz
    XForms Quiz
    XSL-FO Quiz
    XML DOM Quiz
    XLink Quiz
    XQuery Quiz
    XPath Quiz
    XPointer Quiz
    RDF Quiz
    SOAP Quiz
    WSDL Quiz
    RSS Quiz
    WAP Quiz
    Web Services Quiz
    Browser Scripting Quizes
    JavaScript Quiz
    VBScript Quiz
    AJAX Quiz
    DHTML Quiz
    HTML DOM Quiz
    WMLScript Quiz
    E4X Quiz
    Server Scripting Quizes
    ASP Quiz
    PHP Quiz
    PERL Quiz
    SQL Quiz
    ADO Quiz
    .NET (dotnet) Quizes
    Microsoft.Net Quiz
    XML Web Services Quiz
    ASP.Net Quiz
    .Net Mobile Quiz
    C# : C Sharp Quiz
    ADO.NET Quiz
    VB.NET Quiz
    Multimedia Quizes
    SVG Quiz
    Flash Quiz
    Media Quiz
    SMIL Quiz
    Web Building  Quizes
    Web Browsers Quiz
    Web Hosting Quiz
    W3C Quiz
    Web Building Quiz
    Web Quality Quiz
    Web Semantic Quiz
    Web Careers Quiz
    Java Quizes
    Java Quiz
    JSP Quiz
    Servlets Quiz
    Struts Quiz
    EJB Quiz
    JMS Quiz
    JMX Quiz
    Programming Langauges Quizes
    C Quiz
    C++ Quiz
    Visual Basic Quiz
    Data Structures Using C Quiz
    Soft Skills Quizes
    Communication Skills Quiz
    Time Management Quiz
    Project Management Quiz
    Team Work Quiz
    Leadership Skills Quiz
    Corporate Communication Quiz
    Negotiation Skills Quiz

    Privacy Policy
    Copyright © 2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved.