Within the Breadcrumbs
section, I have the path home/profile
The desired layout involves floating the Breadcrumbs
to the right while keeping the Other contents
unfloated to the left.
Ver1
--------------------
home/profile
--------------------
Other contents here..
Currently, if I apply the CSS property float:right
to the Breadcrumbs
, all content is forced onto a single line. How can I prevent this and achieve a layout similar to Ver1
?
Ver2
-------------------------------------
Other contents here... home/profile
-------------------------------------
I am also utilizing React Material-UI in this project.