Предложение для семантической разметки

От это сообщение форума :

sp_reset_connection хранимая процедура используется для сброса соединения так, чтобы, когда она используется в пуле, ничто от предыдущей сессии не было сохранено, который определенный для соединения.

5
задан ahsteele 29 September 2009 в 16:41
поделиться

4 ответа

I would use a table for the lower portion because in my opinion this is tabular data. I see 4 columns (icon, project name, project description, and action buttons). I don't see any reason to not use a table for this layout (not to mention that any other approach that would make this layout scale properly would require JavaScript and a lot of headaches to work right).

7
ответ дан 14 December 2019 в 01:12
поделиться

I don't think it would be the most egregious violation of semantic markup if you put that stuff in tables. Except for the buttons, it looks pretty tabular to me. I think the CSS gods would absolve you :)

1
ответ дан 14 December 2019 в 01:12
поделиться

I agree with Andrew. This is tabular data so you should use a

but keep in mind that you should define table headers, columns, and footers properly.

Your other option is to go with a headerless table where you would use a

for the header and footer and a
as the body. However, I don't recommend doing this. One reason would be you would want headers for things like client-side sorting if you're using JavaScript.

1
ответ дан 14 December 2019 в 01:12
поделиться

You're not violating anything putting that in a table form. Sure, some people will whine about it, but it's close enough to tabular data that you may as well.

0
ответ дан 14 December 2019 в 01:12
поделиться