我不确定我的主要标题和其他语义元素是否正确。
在开始begin
Account.transaction do
debit = Debit.new(amount: amount, account: self, category: category)
debit.save!
credit = Credit.new(amount: amount, account: account, category: category)
credit.save!
end
rescue StandardError, ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved => e
##send error to my email
end
之前,我可以在h1
中使用article
代码,而无需其他文字吗?
section
答案 0 :(得分:1)
<article>
是一个自包含的单元,通常带有标题元素,因此没有什么可以阻止您在标题和nothing in the specification says otherwise之后立即启动<section>
。标题元素只不过是本文中文章的标题。