It would be very helpful to explain one by one. The best thing to do is to look for some tutorials CSS
and HTML
. This, nowadays, has a lot of content on the internet. But I will try to explain some of them:
padding:
It puts a kind of margin in between the contents and the box. An image that can help you:
In this image, we see the content Hello Word that is inside a div
(just to illustrate) in yellow. Padding makes this margin between the point inside the box and the content (hello world)
font-size:
As its name proposes, it is the font size, ie the text size.
border:
It serves for you to configure the edges of the element, such as the type of edge (line, strokes, etc.), border color, etc..
cursor:
With its own says, it moves the mouse cursor, enabling for example, when passing the mouse on a link the mouse is the "little hand" or the pointer cursor, among several other options.
position:
It moves the position of an element of the screen. For example, it is possible to create a div and with the position tell it to stay in the center of the screen.
display:
Like the example you quoted, the inline-block
it works to leave elements in line (next to each other) but with the block style. There is for example only the block
which leaves the elements below each other.
Do a search for css, like the links below:
http://www.maujor.com/tutorial/joe/cssjoe1.php
https://www.w3schools.com/css/
You should probably start by studying for some book on the subject. You know that HTML tags and CSS properties are different things, right? In your question it seems that you would not know how to differentiate very well.
– Woss
In addition to the tips below, follow a very complete guide on CSS. CSS Reference
– user71367