how do I bottom justify and address block with the imb on the bottom and others

I need to know:

  1. how to bottom justify and addr block with the imb on the bottom?

  2. change the line spacing between paragraphs?

  3. how do do “snapping points”?

Hi

I hope these help:

    1. You need to set the box to absolute and set the possition to bottom:
      #box { position: absolute; bottom: 0;}
    1. Set the margins on your paragraph by right clicking the paragraph and selet paragraph, then set bottom margin:
    1. Not sure what you mean by snapping points, does this help:
      https://css-tricks.com/introducing-css-scroll-snap-points/

Try this:

  • Insert a table (1 body row, 1 column).
  • Right mouse click the table cell and choose Cell… form the contextual menu.
  • Set the height for the cell, e.g. 1in.
  • Change the Vertical Align property to bottom.

You may want to set the margin-bottom property to 0 (zero) to remove the extra spacing below the lines (e.g. via a stylesheet rule). Checkout the following sample. I’ve assigned an ID to my table (or table-cell) and changed the margin for the paragraphs in that element:

#my-address-block p {
    margin-bottom: 0;
}

Hope this helps,

Erik

Thank you!