DEV Community

mhcrocky
mhcrocky

Posted on

2 1

How to add CSS class in Ruby on rails form elements

This post is just a mere attempt to log-in what I have learnt about Ruby on rails Form and is not a tutorial but I know this will help those who have just began to learn Rails.

I started to building project using bootstrap and ruby on rails and meet some problem.

I wanted to use form-control class in the input tag to style it, but it didn't work.
So I did a Google search and found the results, but it took me a while.

The reason I want to write this article is because I don't want other people like me to waste their time.

You can add class using following codes


<% form.password_field(:account, class: "form-control") %>

Enter fullscreen mode Exit fullscreen mode

You can add other attributes to this field.

<% form.password_field(:account, class: "form-control" , data:"dsfsdfsdf") %>

Enter fullscreen mode Exit fullscreen mode

If this article help you I will be happy

Top comments (1)

Collapse
 
jmatheraipm profile image
jmather-aipm

Thanks, I appreciate you passing on what you've learned!

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay