Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default &nbsb Size

    I have text with multiple paragraphs. I want the first line of each paragraph
    to be indented. I plan to use CSS to set the <p> tag to indent. However, using
    this tag for each paragraph produces space between each paragraph - which is
    not desired. To get around that, I plan to cheat by using <br> tags and then
    inputing nonbreaking space at the beginning of each paragraph except the first.

    I need to know how much &nbsb provides. How is it measured (in exs)? This will
    help me determine how much indendation to set in my style sheet for <p>.

    Keeper4826 Guest

  2. Similar Questions and Discussions

    1. display size on-screen differs from actual size.
      With Illustrator 10 installed on Windows XP Pro with a Viewsonic 21" monitor at 16000 X 1200, the problem I am having is: The image I see on-screen,...
    2. How do I resize a document from Poster Size to Letter Size??
      I designed a poster using ID CS (3.01) on a Windows XP platform. It is a single page document measuring 22" X 30", and I now need to print the same...
    3. CAN I CHANGE SIZE (PIXELS) OF A PROJECTOR TO REDUCE THE FILE SIZE?
      as far as I know you would have to transform bitmap scale all bitmap members to the new size, then readjust their positions to score, and adjust...
    4. Cast Members Size Vs. Total Movie Size
      What ultimately worked for me was to choose "Link to External File" in the media drop-down box within the importing dialog box when importing files....
    5. PPI / DPI / Output size / Scanned Size HELPPPPPPPPPPP
      I have bought one scanner so far and returned it was a HP4570C. The negatives were to hard to work with it needs some mechanical refinement. I...
  3. #2

    Default Re: &nbsb Size

    >I have text with multiple paragraphs. I want the first line of each
    >paragraph
    > to be indented. I plan to use CSS to set the <p> tag to indent. However,
    > using
    > this tag for each paragraph produces space between each paragraph - which
    > is
    > not desired. To get around that, I plan to cheat by using <br> tags and
    > then
    > inputing nonbreaking space at the beginning of each paragraph except the
    > first.
    Why not use CSS to control the top/bottom margins of those <p> tags? No
    cheat involved there.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "Keeper4826" <webforumsuser@macromedia.com> wrote in message
    news:ebtf5v$qtb$1@forums.macromedia.com...
    >I have text with multiple paragraphs. I want the first line of each
    >paragraph
    > to be indented. I plan to use CSS to set the <p> tag to indent. However,
    > using
    > this tag for each paragraph produces space between each paragraph - which
    > is
    > not desired. To get around that, I plan to cheat by using <br> tags and
    > then
    > inputing nonbreaking space at the beginning of each paragraph except the
    > first.
    >
    > I need to know how much &nbsb provides. How is it measured (in exs)? This
    > will
    > help me determine how much indendation to set in my style sheet for <p>.
    >

    Murray *ACE* Guest

  4. #3

    Default Re: &nbsb Size

    [q]Why not use CSS to control the top/bottom margins of those <p> tags? No
    cheat involved there.[/q]

    I don't see where to do this in the CSS style definition box. I would have
    assumed it would be in the Block category.



    Keeper4826 Guest

  5. #4

    Default Re: &nbsb Size

    Nope - box. It's margin-top and margin-bottom, e.g.,

    p { margin-top:0; margin-bottom:0; }

    or better -

    p { margin:0; }

    Adjust the values to suit....

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "Keeper4826" <webforumsuser@macromedia.com> wrote in message
    news:ebtj86$1uj$1@forums.macromedia.com...
    > [q]Why not use CSS to control the top/bottom margins of those <p> tags?
    > No
    > cheat involved there.[/q]
    >
    > I don't see where to do this in the CSS style definition box. I would have
    > assumed it would be in the Block category.
    >
    >
    >

    Murray *ACE* Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139