I'm trying to center a details view?

Ideally on Mobile view, but i'll take a code that does both if anyone can help me out! :S My CSS is limited! 

 

The details view show here is the one with my profile photo and name. Love how it looks, I just really want it centred! 

![](upload://kgdCFavGRyjXZTI4hAd192KL5Tm.jpeg)

try the following:

 

#view_xxx {

width:fit-content;

margin:auto;}

 

If you just want the code to work in mobile then try this:

@media screen and (max-width:748px) {

#view_xxx {

width:fit-content;

margin:auto;}

}