Question:

Stylesheet for comment boxs?

by  |  earlier

0 LIKES UnLike

I wanna make some comment boxes for my content site, but idk the stylesheet for it.

And it can't be made yourself because I see alot of layout people with the same styled comment boxes, just different backgrounds.

Soooooo, if anyone knows, post it here!

:D

Thanksss!

 Tags:

   Report

1 ANSWERS


  1. the fieldset tag is used to create comment boxes. Here is the css entry I used.

    fieldset.bike

    {

      margin: 5px;

      border: 5px;

      height: auto;

      width: 300px;

      float: right;

      font-family: Times New Roman, Serif;

      font-size: medium;

      font-weight: 900;

      font-style: normal;

      color: #000000;

      text-align: left;

      background-color:#C7C998;

    }

    and the code to implement one

    <fieldset class="bike">

    <p class="cent">Seat vs Saddle?</p>

    <hr noshade color="#FF9900">

    <p class="txt">Purists insist that a bicycle has a saddle - not a seat. Historically, the first bicycles

    had "saddles" probably by analogy to horses. A horse has a saddle, thus a bicycle has a

    saddle. But that was long ago. A reasonable distinction is that one sits on a seat but

    straddles a saddle. From this, the racing bicycle seat should be called a <i>saddle</i>

    but most of the alternative seats should be called <i>seats</i>.</p>

    </fieldset>

    follow link to see final page.

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.