-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Completed #10
base: master
Are you sure you want to change the base?
Completed #10
Conversation
<style> | ||
* { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice use of the *
selector here. Other css looks good but is missing the px
with the numbers.
For example see the use of px with numbers in this snippet.
.button {
width: 50px;
height: 50px;
font-size: 30px;
margin: 5px;
cursor: pointer;
}
See this page for more help https://www.w3schools.com/cssref/css_units.asp
<td><input class="button" type="button" value="9" onclick="insert(9)"></td> | ||
<td><input class="button" type="button" value="*" onclick="insert('*')"></td> | ||
</tr> | ||
<tr> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For this assignment, these are the only buttons needed for Add, Subtract, Multiply, Divide.
</form> | ||
<table> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These number buttons are not needed for this assignment. We want to have the input fields for users to type in the number values as we started in the template in class and the repo we pulled from originally.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There seems to be missing JS and a large deviation from the use of the input fields. We should plan to discuss this together.
No description provided.