Here are 5 JavaScript exercisms, with each exercism starting with a link to my submission. In addition, 5 other solutions for each exercism are reviewed as well, with links and my comments.
My code: link to submission
Here are 5 JavaScript exercisms, with each exercism starting with a link to my submission. In addition, 5 other solutions for each exercism are reviewed as well, with links and my comments.
My code: link to submission
I had to change div1 display to inline-block, put the other two divs into a container and floated the whole container to the right.
Set div2 margin to auto in order to center and gave absolute position to div3 with a right margin of 0.
###The following assignments were completed by me over the intermission week:
Most likely you have homebrew installed on your machine, if not follow these instructions.
To install Exercism CLI, type the following on your terminal:
brew update && brew install exercism
To make sure it was installed correctly, run:
rails new <project_name> -d postgresql --skip-turbolinks --skip-spring -T
-d postgresql
sets up the project to use PostgreSQL--skip-turbolinks
& --skip-spring
creates a project that does not use turbolinks or spring-T
skips the creation of the test directory and use of Test::Unit