Jump to content
  • 0

Замена текста другим текстом под средством css


Compaq6720s
 Share

Question

Доброе время :)

Можно как-то заменить один текст на другой текст через css?

Есть много техник заменить текст на картинку, а текст на текст не понимаю как...

Пример:

<ul class="links main-menu">

<li class="menu-1"><a title="" href="#">Техподдержка</a></li>

...

</ul>

Надо получить через css:

<ul class="links main-menu">

<li class="menu-1"><a title="" href="#">[Карамба]</a></li>

...

</ul>

Возможно такое реализовать, когда есть доступ к перекрытию css на сайте?

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 1

Прошло много лет, но вопрос актуален. Продолжу идею SelenIT с циничными упрощениями:
 

<style>
        a.mmm {font-size:0px;}
        a.mmm:after {font-size:16px; content:"Пока"}
</style>
<a class="mmm">Привет</a>

Link to comment
Share on other sites

  • 0

Если очень захотеть, то, например...

<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<title>Content</title>
<style>
.menu-1 a { position: relative; }
.menu-1 a:after { position:absolute; top: 0; left: 0; right: 0; bottom: 0; background: #fff; content: '[Карамба]'; }
</style>
</head>
<body>
<ul class="links main-menu">
<li class="menu-1"><a title="" href="#">Техподдержка</a></li>
</ul>
</body></html>

но 1) IE7 и ниже "отдыхают", 2) зачем? :)

Link to comment
Share on other sites

  • 0
CSS — это таблица стилей. Каким образом текст относится к стилям? Вы же не пишете тексты баллончиком с краской.

Вы малась не поняли суть :)

Да ты не переживай. Через ЖС это делается кодом в несколько строк. ;)

Не переживал бы если такая возможность была бы. А так только есть доступ к перекрытию css.

Если очень захотеть, то, например...

но 1) IE7 и ниже "отдыхают", 2) зачем? :)

1) Спасибо. 2) Тяга к экспериментам :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy