我已经设置了如下的维恩图。当文本完全在两边溢出时,如何使文本环绕在圆内。据我所知,.venn-circle自动调整文字和圆圈的宽度。如何将其设置为的大小,以使文本自动换行?
it('Test WO Sorting Ascending', () => {
cy.get(constants.btnLmsWOSortAsc)
.click()
.then(function() {
retreive_data_from_UI()
.then(function(result){
for(var i = 0; i < 5; i++){
cy.log(result[i]); // content printed properly here too
}
});
});
});
我尝试将样式添加到要包装的文本中,但是它不起作用。