вынудить браузер не использовать ClearType (или подобную технику), но использовать сглаживание в оттенках серого. Оттенки серого, как правило, выглядят смелее.

ли способ добиться эффекта в приведенном ниже примере, не дублируя контент, просто используя html и css?

Таким образом, у вас в основном есть текст, который color1 и background1 с одной стороны и color2 плюс background2 с другой стороны?

Пример кода для копирования:

<div style="width: 50%; background-color: black; overflow: hidden; height: 300px;display: inline-block;">
    <p style="width: 200%; color: white">
    I am multicolor text. Multicolor text i am. This really does feel great. However, to get this, i need duplicated content. Is there a css way to do the same effect without duplicated content? I am multicolor text. Multicolor text i am. This really does feel great. However, to get this, i need duplicated content. Is there a css way to do the same effect without duplicated content?
    </p>
    </div><div style="width: 50%; background-color: white; overflow: hidden; height: 300px;display: inline-block;">
    <p style="width: 200%; color: black; transform: translateX(-50%)">
    I am multicolor text. Multicolor text i am. This really does feel great. However, to get this, i need duplicated content. Is there a css way to do the same effect without duplicated content? I am multicolor text. Multicolor text i am. This really does feel great. However, to get this, i need duplicated content. Is there a css way to do the same effect without duplicated content?
    </p>
    </div>

Ответы на вопрос(2)

Ваш ответ на вопрос