Form doesn't move up on submit

后端 未结 3 878
粉色の甜心
粉色の甜心 2021-01-24 05:59

I\'m trying to move the form up a few pixels and this doesn\'t work. I don\'t know why.

The function is being called when I submit (I have tested it with an alert()), bu

3条回答
  •  清歌不尽
    2021-01-24 06:21

    Can you try adding position: relative; also

            $("#formulario").submit(function (event) {
                $(this).css({
                    position: "relative",
                    top: "-50px"
                });
    
            });
    

提交回复
热议问题