Results 1 to 3 of 3

Thread: css and dreamweaver

  1. #1
    Join Date
    Oct 2006
    Location
    New York
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default css and dreamweaver

    I'm just starting out to make my own css. Can I trust on using Dreamweaver?

  2. #2
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    I think DreamWeaver won't create any problems if you create your CSS using it. But i prefer to use some tool that gives me some preview of my styles while i create them, i use a free tool called TopStyle Lite

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    DW generates basically valid css but usually just creates non-descriptive class names like:

    Code:
    .style1 {
    property/value pairs reflecting what you have instructed DW to use for this style appear here
    }
    This is valid but, of little help later if you want to manually edit the code as it gives you no idea what the style is for, and if the document is at all large or complex, it can be difficult to even find where this style is used. Also, DW will not get creative nor will it avoid creating duplicate styles where one style class could be applied to two or more elements.

    If you want to learn css style try:

    http://www.w3schools.com/css/

    and a good reference:

    http://www.blooberry.com/indexdot/css/

    But, if you don't want to be bothered with all that, rest assured that DW is writing out valid style for the most part.

    That Top Style Lite thing looks helpful but may also have its pitfalls. It certainly looks like it would be better than just using DW, unless you really don't want to learn about css style.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •