css3 - css如何改变button中的文字?
ringa_lee
ringa_lee 2017-04-17 11:31:30
0
3
536

逼不得已,使用css方法如何解决,请教大家。

ringa_lee
ringa_lee

ringa_lee

reply all(3)
伊谢尔伦

I can only help you so far:


button:after {
  content: "Hellow";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
}
巴扎黑

No, CSS can only change the content in the ::before and ::after pseudo-elements.

You can try to use pseudo elements to cover the original elements.

Ty80

Css cannot change the text inside, why don’t you use js or jquery to achieve it?

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template