You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using TailwindCSS’s bg-clip-text and bg-gradient utilities, the text gradient effect does not render as expected in the Responsively App browser. Instead, a solid background gradient appears. The issue works correctly in other browsers like Chrome, Edge, and Firefox.
The example is a simple text gradient applied as follows:
<pclass="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-pink-600">
Incredible growth this year
</p>
Expected Behavior:
The text should render with a gradient applied, making the text visible as a gradient-filled text with a transparent background (like in other browsers).
Actual Behavior:
In Responsively App, the gradient appears as a solid background rectangle behind the text rather than clipping to the text itself.
Steps to Reproduce:
Create a simple HTML file using TailwindCSS with the following example:
<pclass="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-pink-600">
We've achieved incredible growth this year
</p>
Open the file in Responsively App and observe the rendering.
Open the same file in Chrome, Firefox, or Edge to compare.
Screenshots:
Responsively App (Issue)
Other Browsers (Expected)
Environment Details:
Responsively App Version: 1.15.0
OS: Windows 11
Additional Notes:
This issue might be related to how Responsively handles background-clip: text or CSS rendering. It would be great to investigate if the CSS parsing/rendering in Responsively differs from standard browsers.
The text was updated successfully, but these errors were encountered:
@anupom69
This solution ensures that the gradient is properly applied to the text using the background-clip: text property, which works as expected in most modern browsers, including Chrome, Edge, and Firefox.
It seems like Responsively App might be handling the background-clip: text and mask-image properties differently, which could explain why the text gradient isn't displaying correctly.
Could you investigate whether Responsively App’s rendering engine supports background-clip: text fully, or if there is a setting that affects how it parses and displays this type of CSS?
When using TailwindCSS’s
bg-clip-text
andbg-gradient
utilities, the text gradient effect does not render as expected in the Responsively App browser. Instead, a solid background gradient appears. The issue works correctly in other browsers like Chrome, Edge, and Firefox.The example is a simple text gradient applied as follows:
Expected Behavior:
The text should render with a gradient applied, making the text visible as a gradient-filled text with a transparent background (like in other browsers).
Actual Behavior:
In Responsively App, the gradient appears as a solid background rectangle behind the text rather than clipping to the text itself.
Steps to Reproduce:
Screenshots:
Environment Details:
Additional Notes:
This issue might be related to how Responsively handles
background-clip: text
or CSS rendering. It would be great to investigate if the CSS parsing/rendering in Responsively differs from standard browsers.The text was updated successfully, but these errors were encountered: