Html占位符属性问题

时间:2013-04-29 07:52:24

标签: html css

我正在尝试使用带有以下样式的html placeholder属性,其中将显示无序列表,订单列表,段落,粗体文本:

Please provide social Combo offer details
For social combo lease enable or add your social media button on site
1. tweets / retweet url : website url where tweet button is enabled or twitter tweet 
   url
2. fb share : website url
3. google plus : website url

有没有办法在html placeholder属性上显示这种风格?

2 个答案:

答案 0 :(得分:1)

如果要设置占位符属性的样式,则需要使用CSS

:-moz-placeholder {
    font-weight: bold;
}
::-webkit-input-placeholder {
    font-weight: bold;
}
::-moz-placeholder {
    font-weight: bold;
}
:-ms-input-placeholder {
    font-weight: bold;
}

答案 1 :(得分:1)

placeholder属性与任何HTML属性一样,将纯文本作为其值;那里不会识别出任何标记。所以你不能把那里有一个HTML列表。

它意味着用作短占位符文本,而不是解释。您应该将填写说明放在页面的正常内容中,最好是在表单之前或相关字段之前。