Jump to content

Alex&R

User
  • Posts

    165
  • Joined

  • Last visited

Everything posted by Alex&R

  1. Конечно же на код скрипта.
  2. Отлично. Прямо в яблочко. Огромное спасибо.
  3. Валидатор в FireFox ругается на JavaScript. Пробовал несколько вариантов, но проблема не решается. <script type="text/javascript"> <!--//<![CDATA[ код скрипта //]]>--> </script> и <script type="text/javascript">/*<![CDATA[*/ код скрипта /*]]>*/ </script> На сколько можно верить валидатору "огненной лисы"?
  4. Мне нужно добиться эффекта, что бы "Город" был по-середине когда селект не раскрыт, а города выравнивались по левому краю.
  5. получилось. но сам заголовок не выровнялся
  6. Подскажите, как выровнять текст в раскрывающемся списке, а именно выделенный пункт списка, а не весь список Пр. <select id="form"> <option selected="selected">Text1</option> <option>Text2</option> </select>
  7. А что за недостатки?
  8. Заметил такую вот штуку. Напр. есть сайт с адресом www.site.com. Переходим на страницу напр. news (www.site.com/news/), но в адресной строке все равно отображается www.site.com. Как это реализовать?
  9. Интересует такой вот вопрос. Есть ли разница сколько таблиц стилей используется при написании сайта? Я имею ввиду, весь код css писать в один файл (напр. base.css) или для каждой страницы использовать отдельную таблицу стилей и импортировать ее в основную (напр. base.css, news.css ...).
  10. Первый вариант прошел. Большое спасибо.
  11. При вывод страницы на печать весь дизайн "плывет", то есть страница распечатывается только без таблиц стилей. Как решить этот вопрос?
  12. Интересует такой вопрос. Как Google находит изображение по заданному запросу, с помощью alt или title?
  13. Всем большое спасибо за ответы. Много полезного почерпнул.
  14. А как называются правильно эта мнемоника 00A0, 003E...?
  15. А как на счет отображения в IE6?
  16. Конструкция страницы: <div id="main"> <div class="left-block"> Текст </div> <div class="right-block"> Текст </div> </div> <div id="base-right-block"> Текст </div> Теперь стили: #main { float: laft; } .left-block { float: left; } .right-block { float: left; } #base-right-block { float: left; } С вышеописанного можно сделать вывод, что base-right-block будет обтекать main слева, но он размещается снизу под main. Я поступил по-другому: <div id="base-right-block"> ... </div> <div id="main"> ... </div> поменял местами. Стиль: #main { } /*оставил без обтекания*/ ... #base-right-block { float: right; } Все стало на места. Меня интересует, почему не проходит первый вариант.
  17. Во всех. Так и выводит: Сылка >>>
  18. Почему-то твой вариант "не работает".
  19. Здравствуйте. Объясните разницу между: html - <a class="more" href="...">Ссылка >>></a> CSS - a.more { ... } и html - <div class="more"><a href="...">Ссылка >>></a></div> CSS - .more { ... } Или можно представлять в обоих примерах?
  20. Помоготе с валидацие JavaScript. Валидатор ругается на часть кода java script: for (var i = 0; i < j.length; i++) { This message may appear in several cases: * You tried to include the "<" character in your page: you should escape it as "<" * You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&", which is always safe. * Another possibility is that you forgot to close quotes in a previous tag. и options += '<option value="' + j[i].pk + '">' + j[i].name + '</option>'; The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed). One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
  21. извиняюсь, больше не буду
  22. Есть конструкция, напр: <div id="1"> <table> <tr> <td>TEXT 1</td> </tr> </table> </div> <div id="2"> <table> <tr> <td>TEXT 2</td> </tr> </table> </div> Но при выводе в браузер TEXT 1 накладывается на TEXT 2. Что нужно прописать в цсс что-бы второй див выводился под первым?
  23. Alex&R

    Validator W3C

    Подскажите пожалуйста. Валидатор ругается на: Line 259, Column 23: document type does not allow element "h3" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag <p align="center"><h3><a href="/ru/events/">Все события >>></a></h3></p> The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element. One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>"). Когда забираю тег <h3></h3> - все гуд. Но все же, почему валидатор так реагирует?
  24. Alex&R

    h1-h4

    А какая высота h1-h4 по-умолчанию?
  25. Alex&R

    h1-h4

    Подскажите пожалуйста, с помочу css можно задать высоту заголовков h1-h4? А то их высота в IE6 значительно отличается от других браузеров. Или подскажите другой способ борьбы с этим явлением.
×
×
  • 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