Rails form_for submit button

Hi,

Presently the submit button is coming as a button in below case.

<% form_for @chapter do |chapter_form| %>
… labels
… text_areas…
<%= chapter_form.submit ‘Create’ %>

I want to build a custom button in CSS and show that instead of the
button.

Can anyone help me please?

Ritvvij wrote:

Hi,

Presently the submit button is coming as a button in below case.

<% form_for @chapter do |chapter_form| %>
… labels
… text_areas…
<%= chapter_form.submit ‘Create’ %>

I want to build a custom button in CSS and show that instead of the
button.

Can anyone help me please?

use style attribute with button

<%= chapter_form.submit “Create”, :class => “my-css-button-class” -%>