Skip to content
Advertisement

Place text on Box Component of Material UI

I want the hover functionality to happen (UI) which is happening in this case: Desired UI Source: https://www.loewshotels.com/santa-monica

Now since modifying background image styles is a bit complicated, I have to use the Box Component from Material UI and in it, I have placed the image and also done the desired transitions like zoom out, etc. However I cannot add text on the Box component (which again is basically inside a Card Component).

Code for the specified part:

JavaScript

Styles.js:

JavaScript

Currently, my UI looks like this: not hovered hovered

Advertisement

Answer

You can use the ::after pseudo-element with the content property and show it only on hover.

Here’s a simple example:

CSS

JavaScript

HTML

JavaScript

For simplicity it uses just plain HTML/css.

If you want to see it in action in a material-ui/React project here’s the sandbox link.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement