I have to learn dojo for some project . Can some one let me know how to remove black outline around TitlePane in Dojo .
<script>
require(["dojo/ready", "dijit/TitlePane", "dojo/dom"], function(ready, TitlePane, dom){
ready(function(){
var tp;
tp = new dijit.TitlePane({title:"I'm a TitlePane", content: "Collapse me!"});
dom.byId("holder").appendChild(tp.domNode);
});
});
</script>
I did check out the sample application at the below URL and found the same issue there too
I am using dojo v1.10


this style is generated by user agent browser (chrome) ,
if you want to remove it ,
just override the
.dijitTitlePaneTitleFocusand set itsoutlinetononeas below :if you want to apply to all other widget you can apply this style :
See working snippet :