The pointer does not move down:
HTML:
<div class="notice"> Пароль или имя пользователя указано не верно <div class="pointer">▼</div> </div> CSS:
.notice { position: absolute; } .notice .pointer { position: relative; margin-bottom: -50px; } Thus, the ▼ should be shifted 50 pixels to the bottom, but this does not happen.
top: 50px;.margin-bottom -50pxwill work withabsoluteand others - Yuri