css输入提交链接

前端之家收集整理的这篇文章主要介绍了css输入提交链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个html:
<form id="REVIEW" method="post" action="/SortReviews">
        <fieldset class="sort">
          <input type="submit" value="$ratingLine"/>            
        </fieldset>
      </form>

我想给提交按钮一些css,所以它看起来像一个链接.

{
    background: none;
    border: none;
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

我该怎么做?

解决方法

<style type="text/css">
form input[type="submit"]{

    background: none;
    border: none;
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}
</style>

这不是你要找的吗?

如上所述,另一个选项是使用javascript提交锚点元素的表单onclick:

<a href="#" onclick="document.review.submit()">submit</a>

你的表单有一个属性:name =“review”

原文链接:https://www.f2er.com/css/216621.html

猜你在找的CSS相关文章