Jump to content

ifman

Newbie
  • Posts

    5
  • Joined

  • Last visited

Information

  • Sex
    Мужчина

ifman's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Делай одну функцию обработки нажатия на ссылки. Например в jQuery как-то так: $('.button').click(function() { $('.text-block').hide(); var text_block_id = $(this).attr('rel'); $('#'+text_block_id).show(); }); Сперва прячем все элементы с классом "text-block". Потом получаем id нужного текстового блока из атрибута rel кнопки. Затем показываем этот блок. HTML будет примерно таким: <input type="button" class="button" rel="block1"/> <input type="button" class="button" rel="block2"/> <input type="button" class="button" rel="block3"/> <div id="block1" class="text-block">text</div> <div id="block2" class="text-block">text</div> <div id="block3" class="text-block">text</div> Похожая фигня сделана на моей визитке, например.
  2. Надо писать не padding, а margin. Смотри. <body> <div style="margin:0px auto;width:70%;border: 1px solid red;"></div> </body> Такая штука отцентрирует див.
  3. Latex в картинку Как-то так.
  4. А что значит такое? Типа он мне уже исправил это? А так красиво, да.
×
×
  • 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