Closed yash1307raj closed 2 years ago
I think that would be best described as a "support border attribute" feature request! I've added the request here: https://native-html.canny.io/features/p/support-table-border-attribute
I solved the problem using the trick below.
<RenderHtml
tagsStyles={contentHtmlStyles}
...
/>
const contentHtmlStyles = StyleSheet.create({
table: {
borderTopWidth:1,
borderLeftWidth:1,
borderColor:"#ccc",
marginBottom: 7
},
tr: {
borderBottomWidth: 1,
borderColor: "#ccc",
},
td: {
borderRightWidth:1,
borderColor:"#ccc",
padding: 5
},
});
Decision Table
<yyy>
is not rendered”Good Faith Declaration
Description
React Native Information
RNRH Version
"^6.3.3",
Tested Platforms
Reproduction Platforms
Minimal, Reproducible Example
Additional Notes
No response