这是两个跨越(在现实生活中很多跨度)位于网页。我想设置他们之间的距离。我想使用margin-bottom属性,但我看不到使用它的任何影响。跨度仍然处于以前的位置。那是错的。
这是我的代码:
这是我的代码:
<!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> <Meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title></title> <style type="text/css"> .position,.name{ overflow: hidden; } .position{ margin-bottom: 40px; } </style> </head> <body> <span class="position">Designer</span><br/> <span class="name">John Smith</span> </body> </html>