开发者

Using CSS to style Ruby objects in erb

开发者 https://www.devze.com 2023-02-13 01:02 出处:网络
I have Googled around but can\'t find the answer to this question.How do I use CSS to edit RUby objects in erb.For e开发者_运维技巧xample:

I have Googled around but can't find the answer to this question. How do I use CSS to edit RUby objects in erb. For e开发者_运维技巧xample:

<%= f.label :email, "Enter your email address for updates" %><br />
<%= f.text_field :email %>

Here, I want to use CSS to style the text and the form box. How can I do that?


You can use the :class option to specify a CSS class:

<%= f.text_field :email, :class => "login" %>

and then put that in your css:

input.login {
  color: red;
}

Also, you can specify inline CSS if you want:

<%= f.text_field :email, :style => "color: red;" %>


Adding on to what Dylan said...

You can use :id option to specify a CSS id:

<%= image_tag "illustrations/clipboard.png", :id => "clipboard" %>

and then put in your css:

#clipboard {
     border: 1px solid #000;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消