Adsense
Popular Posts
- Install APXS in Redhat Linux
- MySQL workbench -"Could not decrypt password cache"
- Transfer modules between sites
- JavaScript, remove trailing insignificant zeros after toFixed function
- Set Windows path command line
- datatable order by nunmeric
- MySQL date created and date modified
- super(props) in React
- PHP, dump varailbes in a format way
- React: connect(mapStateToProps, mapDispatchToProps)
Wednesday, February 3, 2016
Difference between dot and space in CSS
What is difference between
#tab1 a { text-decoration: underline; }
and
#tab.a { text-decoration: underline; }
#tab1 a { text-decoration: underline; }
<div id='tab1'><a>test</a><a>test1</a></div>
put all underline for link under id tab1
#tab.a { text-decoration: underline; }
<a id='tab1'>test</a>
Select link with id tab1 as underline
To remove underline
#tab.a { text-decoration: none; }
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment