Jump to content

Selector

Newbie
  • Posts

    2
  • Joined

  • Last visited

Selector's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Здравствуйте, товарищи ! Столкнулся с такой вот проблемой: когда height не влезает, то делается нежелательный отступ (по-сути сдвиг: с права на лево). Вот html: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Test</title> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> function load() { $.ajax({ url: "/text.txt", cache: false, success: function(xml){ $("#m").html(xml).show(); setTimeout("$('#m').html('Python (англ. python — питон, произносится — па́йтон; в русском языке распространено название пито́н[4])[5] — высокоуровневый язык')",2000); setTimeout('load();',5000) } }); } </script> <style> #m { margin:5px auto 5px; width:800px; background-color:#CD950C; } </style> </head> <body> <span onclick="load();">Start</span> <div id="m"> Python (англ. python — питон, произносится [ˈpaɪθ〈ə〉n] — па́йтон; в русском языке распространено название пито́н[4])[5] — высокоуровневый язык </div> </body> </html>
×
×
  • 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