Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to move text up using CSS when nothing is working

Tags:

html

css

I want to move the text displayed at the bottom of the page slightly upwards and have tried almost everything i know and google but can't shift the text upwards to display the remaining clipped text.

Attached is a ScreenShot of the same Please suggest that what can be done to accomplish this task Text clipped from bottom

like image 359
Vipin Verma Avatar asked Sep 05 '25 10:09

Vipin Verma


2 Answers

you can try

position: relative;
bottom: 20px;

but I don't see a problem on my browser (Google Chrome)

like image 200
pwolaq Avatar answered Sep 07 '25 23:09

pwolaq


try a negative margin.

margin-top: -10px; /* as an example */
like image 44
onlinespending Avatar answered Sep 08 '25 00:09

onlinespending