Nothing is happening when I change the value of left
, top
, right
. It stays at the same place. I also tried changing the position
attribute but nothing is happening.
What am I doing wrong?
.PHP_A {
position: static;
left: 200px;
top: 400px;
right: 200px;
z-index: 1;
background: #ccccff;
max-width: 360px;
margin: 0 auto 100px;
padding: 45px;
text-align: center;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
<div class="PHP_A">
<form action="#" method="post">
Course Name:PHP_A</br>
</br>
Course Duration:100 HOURS</br>
</br>
CourseFees:$1000</br>
</br>
</br>
</br>
<input type="submit" name="submit" value="APPLY" />
</form>
</div>
</br>
</br>
` instead. See [What is the main difference of
and ](https://stackoverflow.com/questions/28512655/what-is-the-main-difference-of-br-and-br) and [HTML 5: Is it
,
, or
?](https://stackoverflow.com/questions/1946426/html-5-is-it-br-br-or-br) – showdev Feb 02 '18 at 19:06