target
UK[?tɑ:g?t] US[?tɑ:rg?t]
n. Target; purpose; (service) object; (shooting) Target
vt. Aim; use... as an attack target
Third person singular: targets Plural: targets Present participle: targeting targeting Past tense: targeted targetted Past participle: targeted targetted
css target attribute syntax
Function: Abbreviation attribute, set target-name, target-new and target-position attributes.
Syntax: target: target-name target-new target-position;
Description: Where is target-name specified? Open the hyperlink (target destination). target-new specifies that the hyperlink should be opened in a new window or a new tab in an existing window. target-position specifies where to place the new destination link.?
Note: target-new and target-position values ??are only valid in new tabs or new windows created by the target-name value. Currently no browser supports target.
css target attribute example
<!DOCTYPE html> <html> <head> <style> a { target:new front; } </style> </head> <body> <p><b>注釋:</b>目前沒有瀏覽器支持 target 屬性。</p> <a href="http://miracleart.cn">歡迎訪問 php中文網(wǎng)</a> </body> </html>
Run instance ?
Click the "Run instance" button to view the online instance