How to Make an Element stretch the full width of a container

Make an element stretch the full width of a container. Similar to a full width button style. CSS Style

In order to stretch an element a href to the full width of the container we use the following css feature.

a {
  display: block;
}

This is nice for when you want to do a a href full width to the container like a button.