At the bottom of this HTML file, there are 3 buttons displayed.
The first image illustrates the layout of the 3 buttons.
The second image demonstrates what happens when the middle button in the footer is commented out.
The third image shows the situation where ng-hide="true" is applied to the middle button.
Is it possible to eliminate the space between the "NO" and "YES" buttons when the middle one is set to ngHide(n)? Thank you
https://i.stack.imgur.com/tfkzY.png
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
height: 1%;
}
header > button {
height: 1.5em;
width: 1.5em;
font-size: 1.5em;
top: 0;
}
...
<!doctype html>
<html lang="en" ng-app="appModule">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width" />
<base href="http://localhost:63342/students/">
...