Tell me, plizs, I’m not really going around in HTML, I need an attachment or space type tag (to be on one line) like this

And then I look like this

Thank you in advance!
Tell me, plizs, I’m not really going around in HTML, I need an attachment or space type tag (to be on one line) like this

And then I look like this

Thank you in advance!
html:
<div class="social"> <div class="vk"><!--здесь код кнопки--></div> <div class="mail"><!--здесь код кнопки--></div> <div class="ok"><!--здесь код кнопки--></div> </div> css:
.vk,.ok,.mail{float:left;margin:0 10px;} You can use display: inline-block for elements.
An example of the arrangement of elements in one line:
.box div { width:90px; display:inline-block; } <div class="box"> <div>#1 Первый</div> <div>#2 Второй</div> <div>#3 Третий</div> </div>
displayis a multipurpose property that determines how an element should be displayed in a document.inline-blockvalue - generates a block element that is wrapped around other web page elements like a line element.
space you can use alt + 0160 (on numpad) the question is how you place them ... put the code, see what to do with them)
Source: https://ru.stackoverflow.com/questions/36093/
All Articles