CSS property: target-new
    Description
This property determines what new target destination (if any) is created.
Syntax
target-new: window | tab | none;
Values
- window (by default)
- The target is displayed in a new window. 
- tab
- The target is displayed in a new tab of an existing window. 
- none
- No new destination is created. The target is not displayed. 
Versions
Examples
a {
    target-name: new;
    target-new: tab;
}