Jump to content

Two Declarations


Dysan

Recommended Posts

you can only call one id, but you have no limit to how many classes you can call within a div. You simply separate them by a space.

 

To declare two declarations do this:

 

#box {

 

declaration: one;

declaration: two;

padding: 10px;

margin: 0 auto;

 

}

Link to comment
https://forums.phpfreaks.com/topic/84217-two-declarations/#findComment-429854
Share on other sites

It is possible to add more than one class to HTML elements.

 

Example:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="eng">

  <head>
    <style type="text/css">
      .bold {
        font-weight: bold;
      }
      .italic {
        font-style: italic;
      }
      .big.underline {
        font-size: 2em;
        text-decoration: underline;
      }

    </style>
  </head>

  <body>
     <p class="bold italic">This is written in bold and italic!<p>
     <p class="big underline">This is written in a bigger font-size, and with an underline!<p>
  </body>

</html>

 

Supported by most useable browsers.

Link to comment
https://forums.phpfreaks.com/topic/84217-two-declarations/#findComment-430021
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.