is ugly, I think.
相关问题
- Views base64 encoded blob in HTML with PHP
- Is there a way to play audio on a mobile browser w
- HTML form is not sending $_POST values
- implementing html5 drag and drop photos with knock
- Adding a timeout to a render function in ReactJS
In CSS try:
How about the
letter-spacing
and/orword-spacing
CSS properties?You should use margin or padding properties with your elements to adjust whitespace.
You need to use:
SIX-PER-EM SPACE
EN QUAD space example
EM QUAD
Table
Basically you can replace 4 space with
I had this problem when I realised I will have empty tags. I didn't want to set a fixed height and it was to late to change the html. I wanted to add a space in the css, the substitute for
 
, so I added the space before the element, using:before
(it needs to be specified via unicode).Hope this solution helps someone. The solution with padding didn't work for my problem.
I used a span between two buttons.
<span style="margin-left:70px;"></span>
It spaced everything just where I needed it. I tried creating a "spacer" div, but that pushed one of the buttons below the other. I think that was because I was using a margin-bottom:30px; in the div.