Jump to content
  • 0

Танцы со списками


mozart
 Share

Question

Доброе время суток!

Может кто знает, можно ли сделать выравнивание списка не по левой стороне, а по правой, соответственно и маркеры перенести тоже на правую сторону? Задумка зделать меню полукругом обтекающий справа и слева груглый объект. С правым списком проблем нет, а вот с левым - проблема. Можно ли такое сделать списком?

Edited by mozart
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Попробовал решить вашу проблему с переноом маркеров на правую сторону

способ конечно не универсальный но ....

css

.list {

text-align: right;

margin-right:10px;

}

.qw {

margin-left: -40px;

}

html

<ul class="list">

<li ><span class="qw">text</span></li>

<li><span class="qw">text</span></li>

<li><span class="qw">text</span></li>

<li><span class="qw">text</span></li>

<li><span class="qw">text</span></li>

</ul>

Link to comment
Share on other sites

  • 0
а где же css ? иль я чегото недопонял :)

CSS весь тут:

style="direction: rtl;

Может так будет понятнее:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Список</title>
<style type="text/css">
ul { direction: rtl; }
</style>
</head>
<body>
<ul>
<li>пункт раз</li>
<li>пункт два</li>
<li>пункт три</li>
<li>пункт четыре</li>
</ul>
</body>
</html>

Edited by @LEXXX_NF
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy