Sunday, March 24, 2013

March 22 Online Discussion Question 3

Provide an example of shorthand. Display the original and the shorthand version.You cannot use any of my examples or examples from the book/in class.

5 comments:

  1. Original:

    Margin-top: 10px;
    Margin-right: 30px;
    Margin-bottom: 20px;
    Margin-left: 5px;

    Shorthand:

    Margin: 10px 30px 20px 5px;

    Ethan

    ReplyDelete
  2. then:
    Margin-top: 22px;
    Margin-right: 22px;
    Margin-bottom: 22px;
    Margin-left: 22px;

    now:
    margin: 22px;

    {travis}

    ReplyDelete
  3. First:

    Padding-top: 14px;
    Padding-right: 14px;
    Padding-bottom: 14px;
    Padding-left: 14px;

    End result:

    Padding: 14px;

    [Collin]

    ReplyDelete
  4. Before:

    padding-top: 200px;
    padding-right: 100px;
    padding-bottom: 300px;
    padding-left: 400px;

    After:

    padding: 200px 100px 300px 400px;
    Gracie

    ReplyDelete
  5. Before:
    margin-top: 20px;
    margin-right: 30px;
    margin-bottom: 20px;
    margin-left: 30px;

    After:
    margin: 20px, 30px;

    Autumn

    ReplyDelete