Reputation: 2216
I'm not an UI Developer but this time need to play in css. Writing a form for User Profile. I'm almost done with it but a little issue is remaining. Issues
I have been playing in bootstrap since last two hours to fix this issue. I changed many classes tried to add remove divs for that profile image. but no success.
Here it was the my last try:
.profile-pic{
float:right;
margin-right:50px;
height:160px;
width:140px;
}
But that did not work too.
Upvotes: 0
Views: 848
Reputation: 2036
You can try this :
CSS
.profile-pic{
float : right;
height : 160px;
width : 140px;
padding : 0;
}
Upvotes: 1