Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.