Hello everyone, there was a problem on mobile phones. Block link is displayed incorrectly.

Is it possible to somehow fix this bug by writing styles right on the object?

enter image description here

<a class="get_money pulse-button">Оплата изготовления визиток 1000</a> 
  • one
    Does it bother you that you are trying to fit 200 liters of water into a ten-liter bucket? - Air
  • one
    And who said that this is a БАГ ? How did it roll up and look like ... - Air
  • one
    Show your .html and .css files that you wrote - nosferatu-id

2 answers 2

It depends on how exactly you want to fix the bug.

If you can transfer the words in the button, then

 .get_money.pulse-button {white-space:normal; width:auto; text-align:center;} 

If not, you will have to reduce the font, for example:

 .get_money.pulse-button {font-size:0.5em;} 

If you write in more detail what is possible and what is not, and bring a piece of code - you can be more precise.

    Try display: inline; or word-wrap: break-word;